mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 22:55:23 +00:00
d5594dfe54
--HG-- rename : addon-sdk/test/unit/test_promise.js => toolkit/modules/tests/xpcshell/test_Promise.js
51 lines
1.0 KiB
Makefile
51 lines
1.0 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
|
|
|
|
ifdef MOZ_TOOLKIT_SEARCH
|
|
DEFINES += -DMOZ_TOOLKIT_SEARCH
|
|
endif
|
|
|
|
EXTRA_JS_MODULES := \
|
|
debug.js \
|
|
DeferredTask.jsm \
|
|
Deprecated.jsm \
|
|
Dict.jsm \
|
|
FileUtils.jsm \
|
|
Geometry.jsm \
|
|
InlineSpellChecker.jsm \
|
|
NewTabUtils.jsm \
|
|
PageMenu.jsm \
|
|
PopupNotifications.jsm \
|
|
Preferences.jsm \
|
|
PrivateBrowsingUtils.jsm \
|
|
Promise.jsm \
|
|
PropertyListUtils.jsm \
|
|
RemoteWebProgress.jsm \
|
|
Sqlite.jsm \
|
|
Task.jsm \
|
|
TelemetryTimestamps.jsm \
|
|
Timer.jsm \
|
|
$(NULL)
|
|
|
|
EXTRA_PP_JS_MODULES = \
|
|
CertUtils.jsm \
|
|
Services.jsm \
|
|
Troubleshoot.jsm \
|
|
UpdateChannel.jsm \
|
|
WindowDraggingUtils.jsm \
|
|
$(NULL)
|
|
|
|
ifneq (Android,$(OS_TARGET))
|
|
EXTRA_PP_JS_MODULES += LightweightThemeConsumer.jsm
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|