Bug 828713 - soundtouch_config.h checks the non-existing MOZ_SAMPLE_TYPE_S16LE symbol...
[gecko.git] / dom / Makefile.in
blobb7433c2fab15d4d446ac7a331d998611789a2825
2 # This Source Code Form is subject to the terms of the Mozilla Public
3 # License, v. 2.0. If a copy of the MPL was not distributed with this
4 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
6 DEPTH = @DEPTH@
7 topsrcdir = @top_srcdir@
8 srcdir = @srcdir@
9 VPATH = @srcdir@
11 include $(DEPTH)/config/autoconf.mk
13 MODULE = dom
15 PARALLEL_DIRS = \
16 interfaces/base \
17 interfaces/canvas \
18 interfaces/core \
19 interfaces/html \
20 interfaces/events \
21 interfaces/devicestorage \
22 interfaces/contacts \
23 interfaces/settings \
24 interfaces/stylesheets \
25 interfaces/sidebar \
26 interfaces/css \
27 interfaces/traversal \
28 interfaces/range \
29 interfaces/xbl \
30 interfaces/xpath \
31 interfaces/load-save \
32 interfaces/xul \
33 interfaces/storage \
34 interfaces/json \
35 interfaces/offline \
36 interfaces/geolocation \
37 interfaces/notification \
38 interfaces/permission \
39 interfaces/svg \
40 interfaces/smil \
41 interfaces/apps \
42 $(NULL)
44 PARALLEL_DIRS += \
45 apps \
46 base \
47 activities \
48 bindings \
49 battery \
50 bluetooth \
51 browser-element \
52 contacts \
53 phonenumberutils \
54 alarm \
55 devicestorage \
56 encoding \
57 file \
58 media \
59 messages \
60 power \
61 quota \
62 settings \
63 sms \
64 mms \
65 src \
66 time \
67 locales \
68 network \
69 permission \
70 plugins/base \
71 plugins/ipc \
72 indexedDB \
73 system \
74 ipc \
75 identity \
76 workers \
77 camera \
78 audiochannel \
79 $(NULL)
81 ifeq (WINNT,$(OS_ARCH))
82 PARALLEL_DIRS += \
83 plugins/ipc/hangui \
84 $(NULL)
85 endif
87 ifdef MOZ_B2G_RIL
88 PARALLEL_DIRS += \
89 telephony \
90 wifi \
91 icc \
92 cellbroadcast \
93 $(NULL)
94 endif
96 ifdef MOZ_B2G_FM
97 PARALLEL_DIRS += fm
98 endif
100 ifdef MOZ_PAY
101 PARALLEL_DIRS += \
102 payment \
103 $(NULL)
104 endif
106 # bindings/test is here, because it needs to build after bindings/, and
107 # we build subdirectories before ourselves.
108 TEST_DIRS += \
109 tests \
110 imptests \
111 bindings/test \
112 $(NULL)
114 ifneq (,$(filter gtk2 cocoa windows android qt os2,$(MOZ_WIDGET_TOOLKIT)))
115 TEST_DIRS += plugins/test
116 endif
118 include $(topsrcdir)/config/rules.mk