diff options
author | Marcos Paulo de Souza <marcos.souza.org@gmail.com> | 2013-06-09 17:22:38 -0300 |
---|---|---|
committer | Matúš Kukan <matus.kukan@gmail.com> | 2013-06-09 23:01:36 +0200 |
commit | 17704f59ccaeaa802f50b25eb4554fa98fa5faea (patch) | |
tree | f1e90206c5f8d12e357c0a8fe4b2ee827cd21079 /scp2 | |
parent | 352d6ffa8e3aee793486d8e065ad044b58ca5dac (diff) |
fdo#60924 autoinstall - gbuild/scp2: add canvas module
Change-Id: I740ee32653059669e299ab52f7709319a8534f21
Diffstat (limited to 'scp2')
-rw-r--r-- | scp2/InstallModule_canvas.mk | 24 | ||||
-rw-r--r-- | scp2/InstallScript_setup_osl.mk | 1 | ||||
-rw-r--r-- | scp2/Module_scp2.mk | 1 | ||||
-rw-r--r-- | scp2/source/canvas/cairocanvas.scp | 21 | ||||
-rw-r--r-- | scp2/source/canvas/canvascommons.scp | 22 | ||||
-rw-r--r-- | scp2/source/canvas/directxcanvas.scp | 24 | ||||
-rw-r--r-- | scp2/source/canvas/mtfrenderer.scp | 11 | ||||
-rw-r--r-- | scp2/source/canvas/vclcanvas.scp | 21 | ||||
-rw-r--r-- | scp2/source/ooo/module_hidden_ooo.scp | 5 |
9 files changed, 0 insertions, 130 deletions
diff --git a/scp2/InstallModule_canvas.mk b/scp2/InstallModule_canvas.mk deleted file mode 100644 index ad721b5fa93c..000000000000 --- a/scp2/InstallModule_canvas.mk +++ /dev/null @@ -1,24 +0,0 @@ -# -*- Mode: makefile-gmake; tab-width: 4; indent-tabs-mode: t -*- -# -# This file is part of the LibreOffice project. -# -# This Source Code Form is subject to the terms of the Mozilla Public -# License, v. 2.0. If a copy of the MPL was not distributed with this -# file, You can obtain one at http://mozilla.org/MPL/2.0/. -# - -$(eval $(call gb_InstallModule_InstallModule,scp2/canvas)) - -$(eval $(call gb_InstallModule_add_scpfiles,scp2/canvas,\ - scp2/source/canvas/canvascommons \ - scp2/source/canvas/mtfrenderer \ - scp2/source/canvas/vclcanvas \ - $(if $(filter TRUE,$(ENABLE_CAIRO_CANVAS)),\ - scp2/source/canvas/cairocanvas \ - ) \ - $(if $(filter TRUE,$(ENABLE_DIRECTX)),\ - scp2/source/canvas/directxcanvas \ - ) \ -)) - -# vim: set shiftwidth=4 tabstop=4 noexpandtab: diff --git a/scp2/InstallScript_setup_osl.mk b/scp2/InstallScript_setup_osl.mk index f54cad1c4fb4..ecc4ee90c83d 100644 --- a/scp2/InstallScript_setup_osl.mk +++ b/scp2/InstallScript_setup_osl.mk @@ -13,7 +13,6 @@ $(eval $(call gb_InstallScript_use_modules,setup_osl,\ scp2/accessories \ scp2/base \ scp2/calc \ - scp2/canvas \ scp2/draw \ scp2/graphicfilter \ scp2/impress \ diff --git a/scp2/Module_scp2.mk b/scp2/Module_scp2.mk index c58af2e23195..695c88c4ec40 100644 --- a/scp2/Module_scp2.mk +++ b/scp2/Module_scp2.mk @@ -15,7 +15,6 @@ $(eval $(call gb_Module_add_targets,scp2,\ InstallModule_accessories \ InstallModule_base \ InstallModule_calc \ - InstallModule_canvas \ InstallModule_draw \ InstallModule_extensions \ InstallModule_graphicfilter \ diff --git a/scp2/source/canvas/cairocanvas.scp b/scp2/source/canvas/cairocanvas.scp deleted file mode 100644 index eceff58aa6ec..000000000000 --- a/scp2/source/canvas/cairocanvas.scp +++ /dev/null @@ -1,21 +0,0 @@ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#include "macros.inc" - -STD_LIB_FILE(gid_File_Lib_CairoCanvas, cairocanvas) diff --git a/scp2/source/canvas/canvascommons.scp b/scp2/source/canvas/canvascommons.scp deleted file mode 100644 index db6b0ae46404..000000000000 --- a/scp2/source/canvas/canvascommons.scp +++ /dev/null @@ -1,22 +0,0 @@ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#include "macros.inc" - -STD_LIB_FILE(gid_File_CanvasFactory, canvasfactory) -STD_LIB_FILE(gid_File_SimpleCanvas, simplecanvas) diff --git a/scp2/source/canvas/directxcanvas.scp b/scp2/source/canvas/directxcanvas.scp deleted file mode 100644 index e9ccf2f52a92..000000000000 --- a/scp2/source/canvas/directxcanvas.scp +++ /dev/null @@ -1,24 +0,0 @@ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#include "macros.inc" - -#ifdef WNT -STD_LIB_FILE(gid_File_Lib_DirectX9Canvas, directx9canvas) -STD_LIB_FILE(gid_File_Lib_GdiPlusCanvas, gdipluscanvas) -#endif diff --git a/scp2/source/canvas/mtfrenderer.scp b/scp2/source/canvas/mtfrenderer.scp deleted file mode 100644 index 768dbe6493ef..000000000000 --- a/scp2/source/canvas/mtfrenderer.scp +++ /dev/null @@ -1,11 +0,0 @@ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - */ - -#include "macros.inc" - -STD_LIB_FILE(gid_File_Lib_MtfRenderer, mtfrenderer) diff --git a/scp2/source/canvas/vclcanvas.scp b/scp2/source/canvas/vclcanvas.scp deleted file mode 100644 index a50dd433999b..000000000000 --- a/scp2/source/canvas/vclcanvas.scp +++ /dev/null @@ -1,21 +0,0 @@ -/* - * This file is part of the LibreOffice project. - * - * This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this - * file, You can obtain one at http://mozilla.org/MPL/2.0/. - * - * This file incorporates work covered by the following license notice: - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed - * with this work for additional information regarding copyright - * ownership. The ASF licenses this file to you under the Apache - * License, Version 2.0 (the "License"); you may not use this file - * except in compliance with the License. You may obtain a copy of - * the License at http://www.apache.org/licenses/LICENSE-2.0 . - */ - -#include "macros.inc" - -STD_LIB_FILE(gid_File_Lib_VCLCanvas, vclcanvas) diff --git a/scp2/source/ooo/module_hidden_ooo.scp b/scp2/source/ooo/module_hidden_ooo.scp index 71a6d0fb390b..cf10632e136d 100644 --- a/scp2/source/ooo/module_hidden_ooo.scp +++ b/scp2/source/ooo/module_hidden_ooo.scp @@ -258,13 +258,8 @@ Module gid_Module_Root_Files_5 gid_File_Lib_XSec_XMLSecurity, gid_File_Lib_XSec_Framework, gid_File_Lib_XSec_XmlSec, - gid_File_CanvasFactory, - gid_File_SimpleCanvas, gid_File_Lib_Cmdmail, gid_File_Lib_I18n, - gid_File_Lib_VCLCanvas, - gid_File_Lib_DirectX9Canvas, - gid_File_Lib_GdiPlusCanvas, gid_File_Lib_Accessbridge, gid_File_Lib_Ado, gid_File_Lib_Dl, |