mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 14:45:29 +00:00
a1a8e52ed5
--HG-- extra : rebase_source : 1f6432f6ae1729d2f97cd833a3c5882ee8cc3a4e
76 lines
1.4 KiB
Makefile
76 lines
1.4 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@
|
|
|
|
relativesrcdir = @relativesrcdir@
|
|
|
|
include $(DEPTH)/config/autoconf.mk
|
|
|
|
MOCHITEST_FILES = \
|
|
test_permission_basics.html \
|
|
test_alarms.html \
|
|
test_idle.html \
|
|
test_permissions.html \
|
|
test_power.html \
|
|
test_systemXHR.html \
|
|
test_tcp-socket.html \
|
|
test_webapps-manage.html \
|
|
test_browser.html \
|
|
test_embed-apps.html \
|
|
file_shim.html \
|
|
file_framework.js \
|
|
$(NULL)
|
|
|
|
# disabled until bug 859593 is fixed
|
|
#MOCHITEST_FILES += \
|
|
# test_camera.html \
|
|
# $(NULL)
|
|
|
|
ifdef MOZ_B2G
|
|
MOCHITEST_FILES += \
|
|
test_keyboard.html \
|
|
test_wifi-manage.html \
|
|
$(NULL)
|
|
endif
|
|
|
|
ifdef MOZ_B2G_RIL
|
|
MOCHITEST_FILES += \
|
|
test_cellbroadcast.html \
|
|
test_mobileconnection.html \
|
|
test_networkstats-manage.html \
|
|
test_telephony.html \
|
|
test_voicemail.html \
|
|
$(NULL)
|
|
endif
|
|
|
|
ifdef MOZ_B2G_FM
|
|
MOCHITEST_FILES += \
|
|
test_fmradio.html \
|
|
$(NULL)
|
|
endif
|
|
|
|
ifdef MOZ_B2G_BT
|
|
MOCHITEST_FILES += \
|
|
test_bluetooth.html \
|
|
$(NULL)
|
|
endif
|
|
|
|
ifdef MOZ_WEBSMS_BACKEND
|
|
MOCHITEST_FILES += \
|
|
test_sms.html \
|
|
$(NULL)
|
|
endif
|
|
|
|
ifdef MOZ_TIME_MANAGER
|
|
MOCHITEST_FILES += \
|
|
test_time.html \
|
|
$(NULL)
|
|
endif
|
|
|
|
include $(topsrcdir)/config/rules.mk
|