~mozillateam/mozilla-build-system/beta

« back to all changes in this revision

Viewing changes to dom/Makefile.in

  • Committer: Chris Coulson
  • Date: 2013-04-17 12:14:31 UTC
  • Revision ID: chris.coulson@canonical.com-20130417121431-90vvrxwi3go2hl3d
* Don't include unnecessary Makefiles
* Include the whole of python/
* Include .gdbinit

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#
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/.
5
 
 
6
 
DEPTH           = @DEPTH@
7
 
topsrcdir       = @top_srcdir@
8
 
srcdir          = @srcdir@
9
 
VPATH           = @srcdir@
10
 
 
11
 
include $(DEPTH)/config/autoconf.mk
12
 
 
13
 
MODULE          = dom
14
 
 
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)
43
 
 
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
 
  mobilemessage \
64
 
  sms \
65
 
  mms \
66
 
  src \
67
 
  time \
68
 
  locales \
69
 
  network \
70
 
  permission \
71
 
  plugins/base \
72
 
  plugins/ipc \
73
 
  indexedDB \
74
 
  system \
75
 
  ipc \
76
 
  identity \
77
 
  workers \
78
 
  camera \
79
 
  audiochannel \
80
 
  $(NULL)
81
 
 
82
 
ifeq (WINNT,$(OS_ARCH))
83
 
PARALLEL_DIRS += \
84
 
  plugins/ipc/hangui \
85
 
  $(NULL)
86
 
endif
87
 
 
88
 
ifdef MOZ_B2G_RIL
89
 
PARALLEL_DIRS += \
90
 
  telephony \
91
 
  wifi \
92
 
  icc \
93
 
  cellbroadcast \
94
 
  voicemail \
95
 
  $(NULL)
96
 
endif
97
 
 
98
 
ifdef MOZ_B2G_FM
99
 
PARALLEL_DIRS += fm
100
 
endif
101
 
 
102
 
ifdef MOZ_PAY
103
 
PARALLEL_DIRS += \
104
 
  payment \
105
 
  $(NULL)
106
 
endif
107
 
 
108
 
# bindings/test is here, because it needs to build after bindings/, and
109
 
# we build subdirectories before ourselves.
110
 
TEST_DIRS += \
111
 
  tests \
112
 
  imptests \
113
 
  bindings/test \
114
 
  $(NULL)
115
 
 
116
 
ifneq (,$(filter gtk2 cocoa windows android qt os2,$(MOZ_WIDGET_TOOLKIT)))
117
 
TEST_DIRS += plugins/test
118
 
endif
119
 
 
120
 
include $(topsrcdir)/config/rules.mk