Try to fix intermittent refcount assertions in the presence of more than one thread...
[mozilla-central.git] / xpcom / ds / Makefile.in
blob1bc27ddad5eb08fd94a1e3ec0513aa83acc470bc
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 = xpcom
46 XPIDL_MODULE = xpcom_ds
47 LIBRARY_NAME = xpcomds_s
48 GRE_MODULE = 1
49 MOZILLA_INTERNAL_API = 1
52 CPPSRCS = \
53 nsArray.cpp \
54 nsAtomTable.cpp \
55 nsAtomService.cpp \
56 nsByteBuffer.cpp \
57 nsCheapSets.cpp \
58 nsCRT.cpp \
59 nsFixedSizeAllocator.cpp \
60 nsHashPropertyBag.cpp \
61 nsHashSets.cpp \
62 nsHashtable.cpp \
63 nsINIParserImpl.cpp \
64 nsObserverList.cpp \
65 nsObserverService.cpp \
66 nsProperties.cpp \
67 nsPersistentProperties.cpp \
68 nsRecyclingAllocator.cpp \
69 nsStaticNameTable.cpp \
70 nsStringEnumerator.cpp \
71 nsSupportsArray.cpp \
72 nsSupportsArrayEnumerator.cpp \
73 nsSupportsPrimitives.cpp \
74 nsTimelineService.cpp \
75 nsUnicharBuffer.cpp \
76 nsVariant.cpp \
77 $(NULL)
79 ifdef HAVE_CLOCK_MONOTONIC
80 CPPSRCS += TimeStamp_posix.cpp
81 else
82 CPPSRCS += TimeStamp.cpp
83 endif
85 EXPORTS_NAMESPACES = mozilla
87 EXPORTS_mozilla = \
88 TimeStamp.h \
89 $(NULL)
91 EXPORTS = \
92 nsAtomService.h \
93 nsCheapSets.h \
94 nsCppSharedAllocator.h \
95 nsCRT.h \
96 nsDoubleHashtable.h \
97 nsExpirationTracker.h \
98 nsFixedSizeAllocator.h \
99 nsHashSets.h \
100 nsHashtable.h \
101 nsIByteBuffer.h \
102 nsIUnicharBuffer.h \
103 nsInt64.h \
104 nsMathUtils.h \
105 nsObserverService.h \
106 nsRecyclingAllocator.h \
107 nsStaticNameTable.h \
108 nsStaticAtom.h \
109 nsSupportsArray.h \
110 nsSupportsPrimitives.h \
111 nsTime.h \
112 nsVariant.h \
113 nsStringEnumerator.h \
114 nsHashPropertyBag.h \
115 nsWhitespaceTokenizer.h \
116 nsCharSeparatedTokenizer.h \
117 CheckedInt.h \
118 $(NULL)
120 XPIDLSRCS = \
121 nsIAtom.idl \
122 nsIAtomService.idl \
123 nsICollection.idl \
124 nsIEnumerator.idl \
125 nsIINIParser.idl \
126 nsIPersistentProperties2.idl \
127 nsIProperty.idl \
128 nsIPropertyBag.idl \
129 nsIPropertyBag2.idl \
130 nsIWritablePropertyBag.idl \
131 nsIWritablePropertyBag2.idl \
132 nsIRecyclingAllocator.idl \
133 nsIVariant.idl \
134 nsISerializable.idl \
135 nsIStringEnumerator.idl \
136 nsISupportsArray.idl \
137 nsISupportsIterators.idl \
138 nsITimelineService.idl \
139 $(NULL)
141 SDK_XPIDLSRCS = \
142 nsIArray.idl \
143 nsIHashable.idl \
144 nsIMutableArray.idl \
145 nsIObserverService.idl \
146 nsIObserver.idl \
147 nsIProperties.idl \
148 nsISimpleEnumerator.idl \
149 nsISupportsPrimitives.idl \
150 $(NULL)
152 ifneq (,$(filter WINNT WINCE,$(OS_ARCH)))
153 CPPSRCS += nsWindowsRegKey.cpp
154 XPIDLSRCS += nsIWindowsRegKey.idl
155 EXPORTS += nsWindowsRegKey.h
156 endif
158 EXTRA_COMPONENTS = \
159 nsINIProcessor.js \
160 nsINIProcessor.manifest \
161 $(NULL)
163 # we don't want the shared lib, but we want to force the creation of a static lib.
164 FORCE_STATIC_LIB = 1
166 # Force use of PIC
167 FORCE_USE_PIC = 1
169 include $(topsrcdir)/config/rules.mk
171 LOCAL_INCLUDES += -I$(srcdir)/../io
173 DEFINES += -D_IMPL_NS_COM