gecko/dom/Makefile.in

96 lines
1.6 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 = ..
topsrcdir = @top_srcdir@
srcdir = @srcdir@
VPATH = @srcdir@
include $(DEPTH)/config/autoconf.mk
MODULE = dom
DIRS = \
interfaces/base \
interfaces/canvas \
interfaces/core \
interfaces/devicestorage \
interfaces/html \
interfaces/events \
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 \
bindings \
battery \
contacts \
devicestorage \
file \
media \
power \
settings \
sms \
mms \
src \
locales \
network \
plugins/base \
plugins/ipc \
indexedDB \
system \
ipc \
workers \
$(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