Save all modification
[mozilla-1.9/m8.git] / gfx / src / Makefile.in
blobcb2ae0f63a794ed770fdb31a1751b0b4ee0fcf4c
2 # ***** BEGIN LICENSE BLOCK *****
3 # Version: MPL 1.1/GPL 2.0/LGPL 2.1
5 # The contents of this file are subject to the Mozilla Public License Version
6 # 1.1 (the "License"); you may not use this file except in compliance with
7 # the License. You may obtain a copy of the License at
8 # http://www.mozilla.org/MPL/
10 # Software distributed under the License is distributed on an "AS IS" basis,
11 # WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
12 # for the specific language governing rights and limitations under the
13 # License.
15 # The Original Code is mozilla.org code.
17 # The Initial Developer of the Original Code is
18 # Netscape Communications Corporation.
19 # Portions created by the Initial Developer are Copyright (C) 1998
20 # the Initial Developer. All Rights Reserved.
22 # Contributor(s):
24 # Alternatively, the contents of this file may be used under the terms of
25 # either of the GNU General Public License Version 2 or later (the "GPL"),
26 # or the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
27 # in which case the provisions of the GPL or the LGPL are applicable instead
28 # of those above. If you wish to allow use of your version of this file only
29 # under the terms of either the GPL or the LGPL, and not to allow others to
30 # use your version of this file under the terms of the MPL, indicate your
31 # decision by deleting the provisions above and replace them with the notice
32 # and other provisions required by the GPL or the LGPL. If you do not delete
33 # the provisions above, a recipient may use your version of this file under
34 # the terms of any one of the MPL, the GPL or the LGPL.
36 # ***** END LICENSE BLOCK *****
38 DEPTH = ../..
39 topsrcdir = @top_srcdir@
40 srcdir = @srcdir@
41 VPATH = @srcdir@
43 include $(DEPTH)/config/autoconf.mk
45 MODULE = gfx
46 LIBRARY_NAME = gkgfx
47 EXPORT_LIBRARY = 1
48 GRE_MODULE = 1
49 LIBXUL_LIBRARY = 1
51 PACKAGE_FILE = gfx.pkg
53 REQUIRES = xpcom \
54 windowwatcher \
55 dom \
56 string \
57 widget \
58 locale \
59 view \
60 pref \
61 unicharutil \
62 thebes \
63 $(NULL)
65 DIRS = shared
67 ifdef MOZ_ENABLE_FREETYPE2
68 DIRS += freetype
69 endif
71 ifdef MOZ_ENABLE_POSTSCRIPT
72 DIRS += psshared
73 endif
75 ifdef MOZ_ENABLE_CAIRO_GFX
76 DIRS += thebes
77 else
78 ifdef MOZ_ENABLE_PHOTON
79 DIRS += photon
80 endif
81 ifeq ($(MOZ_WIDGET_TOOLKIT),cocoa)
82 DIRS += mac
83 endif
84 ifneq (,$(filter windows beos mac,$(MOZ_WIDGET_TOOLKIT)))
85 DIRS += $(MOZ_WIDGET_TOOLKIT)
86 endif
87 endif
89 CPPSRCS = \
90 nsColor.cpp \
91 nsColorNames.cpp \
92 nsDeviceContext.cpp \
93 nsFont.cpp \
94 nsFontList.cpp \
95 nsRect.cpp \
96 nsRegion.cpp \
97 nsTransform2D.cpp \
98 nsScriptableRegion.cpp \
99 $(NULL)
101 ifeq (,$(filter windows,$(MOZ_WIDGET_TOOLKIT)))
102 REQUIRES += uconv
103 endif
105 ifneq (,$(filter beos windows os2,$(MOZ_WIDGET_TOOLKIT)))
106 CPPSRCS += imgScaler.cpp
107 endif
109 ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
110 CPPSRCS += \
111 mac/nsRegionPool.cpp \
112 $(NULL)
113 endif
115 EXTRA_DSO_LDOPTS = \
116 $(DEPTH)/modules/libutil/src/$(LIB_PREFIX)mozutil_s.$(LIB_SUFFIX) \
117 $(MOZ_UNICHARUTIL_LIBS) \
118 $(MOZ_COMPONENT_LIBS) \
119 $(NULL)
121 ifneq (,$(filter mac cocoa,$(MOZ_WIDGET_TOOLKIT)))
122 EXTRA_DSO_LDOPTS += \
123 $(TK_LIBS) \
124 $(NULL)
125 endif
127 # This library is used by other shared libs in a static build
128 FORCE_USE_PIC = 1
130 include $(topsrcdir)/config/rules.mk
132 DEFINES += -D_IMPL_NS_GFX