mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
68 lines
1.7 KiB
Makefile
68 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
|
|
|
|
PREF_JS_EXPORTS = $(srcdir)/services-common.js
|
|
|
|
modules := \
|
|
async.js \
|
|
log4moz.js \
|
|
observers.js \
|
|
preferences.js \
|
|
rest.js \
|
|
storageservice.js \
|
|
stringbundle.js \
|
|
tokenserverclient.js \
|
|
utils.js \
|
|
$(NULL)
|
|
|
|
source_modules = $(foreach module,$(modules),$(srcdir)/$(module))
|
|
module_dir = $(FINAL_TARGET)/modules/services-common
|
|
|
|
libs::
|
|
$(NSINSTALL) -D $(module_dir)
|
|
$(NSINSTALL) $(source_modules) $(module_dir)
|
|
|
|
TEST_DIRS += tests
|
|
|
|
testing_modules := \
|
|
aitcserver.js \
|
|
storageserver.js \
|
|
utils.js \
|
|
$(NULL)
|
|
|
|
TESTING_JS_MODULES := $(foreach file,$(testing_modules),modules-testing/$(file))
|
|
|
|
TESTING_JS_MODULE_DIR := services-common
|
|
|
|
# What follows is a helper to launch a standalone storage server instance.
|
|
# Most of the code lives in a Python script in the tests directory. If we
|
|
# ever consolidate our Python code, and/or have a supplemental driver for the
|
|
# build system, this can go away.
|
|
|
|
storage_server_hostname := localhost
|
|
storage_server_port := 8080
|
|
|
|
head_path = $(srcdir)/tests/unit
|
|
|
|
storage-server:
|
|
$(PYTHON) $(srcdir)/tests/run_server.py $(topsrcdir) \
|
|
$(MOZ_BUILD_ROOT) run_storage_server.js --port $(storage_server_port)
|
|
|
|
# And the same thing for an AITC server.
|
|
aitc_server_hostname := localhost
|
|
aitc_server_port := 8080
|
|
|
|
aitc-server:
|
|
$(PYTHON) $(srcdir)/tests/run_server.py $(topsrcdir) \
|
|
$(MOZ_BUILD_ROOT) run_aitc_server.js --port $(aitc_server_port)
|
|
|
|
include $(topsrcdir)/config/rules.mk
|