mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-02 15:15:23 +00:00
103 lines
1.7 KiB
Makefile
103 lines
1.7 KiB
Makefile
#
|
|
# 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/.
|
|
|
|
DEPTH = @DEPTH@
|
|
topsrcdir = @top_srcdir@
|
|
srcdir = @srcdir@
|
|
VPATH = @srcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MODULE = dom
|
|
|
|
DIRS = \
|
|
interfaces/base \
|
|
interfaces/canvas \
|
|
interfaces/core \
|
|
interfaces/html \
|
|
interfaces/events \
|
|
interfaces/devicestorage \
|
|
interfaces/contacts \
|
|
interfaces/settings \
|
|
interfaces/stylesheets \
|
|
interfaces/sidebar \
|
|
interfaces/css \
|
|
interfaces/traversal \
|
|
interfaces/range \
|
|
interfaces/xbl \
|
|
interfaces/xpath \
|
|
interfaces/load-save \
|
|
interfaces/xul \
|
|
interfaces/storage \
|
|
interfaces/json \
|
|
interfaces/offline \
|
|
interfaces/geolocation \
|
|
interfaces/notification \
|
|
interfaces/svg \
|
|
interfaces/smil \
|
|
$(NULL)
|
|
|
|
DIRS += \
|
|
interfaces/apps \
|
|
$(NULL)
|
|
|
|
DIRS += \
|
|
apps \
|
|
base \
|
|
activities \
|
|
bindings \
|
|
battery \
|
|
browser-element \
|
|
contacts \
|
|
alarm \
|
|
devicestorage \
|
|
file \
|
|
media \
|
|
messages \
|
|
power \
|
|
settings \
|
|
sms \
|
|
mms \
|
|
src \
|
|
locales \
|
|
network \
|
|
permission \
|
|
plugins/base \
|
|
plugins/ipc \
|
|
indexedDB \
|
|
system \
|
|
ipc \
|
|
identity \
|
|
workers \
|
|
camera \
|
|
$(NULL)
|
|
|
|
ifdef MOZ_B2G_RIL
|
|
DIRS += \
|
|
telephony \
|
|
wifi \
|
|
$(NULL)
|
|
endif
|
|
|
|
ifdef MOZ_B2G_BT
|
|
DIRS += \
|
|
bluetooth \
|
|
$(NULL)
|
|
endif
|
|
|
|
# bindings/test is here, because it needs to build after bindings/, and
|
|
# we build subdirectories before ourselves.
|
|
TEST_DIRS += \
|
|
tests \
|
|
imptests \
|
|
bindings/test \
|
|
$(NULL)
|
|
|
|
ifneq (,$(filter gtk2 cocoa windows android qt os2,$(MOZ_WIDGET_TOOLKIT)))
|
|
TEST_DIRS += plugins/test
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|