mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
25170257c3
--HG-- extra : rebase_source : 1cd9e402c507260358af7a93c6fb2fc91c24994b
49 lines
1.4 KiB
Makefile
49 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/.
|
|
|
|
modules := \
|
|
hawkclient.js \
|
|
hawkrequest.js \
|
|
storageservice.js \
|
|
stringbundle.js \
|
|
tokenserverclient.js \
|
|
utils.js \
|
|
$(NULL)
|
|
|
|
pp_modules := \
|
|
async.js \
|
|
bagheeraclient.js \
|
|
observers.js \
|
|
rest.js \
|
|
$(NULL)
|
|
|
|
JS_EXPORTS_FILES := $(srcdir)/services-common.js
|
|
JS_EXPORTS_DEST = $(FINAL_TARGET)/$(PREF_DIR)
|
|
INSTALL_TARGETS += JS_EXPORTS
|
|
|
|
MODULES_FILES := $(modules)
|
|
MODULES_DEST = $(FINAL_TARGET)/modules/services-common
|
|
INSTALL_TARGETS += MODULES
|
|
|
|
PP_JS_MODULES := $(pp_modules)
|
|
PP_JS_MODULES_PATH = $(FINAL_TARGET)/modules/services-common
|
|
PP_TARGETS += PP_JS_MODULES
|
|
|
|
include $(topsrcdir)/config/rules.mk
|
|
|
|
# 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.
|
|
|
|
server_port := 8080
|
|
|
|
storage-server:
|
|
$(PYTHON) $(srcdir)/tests/run_server.py $(topsrcdir) \
|
|
$(MOZ_BUILD_ROOT) run_storage_server.js --port $(server_port)
|
|
|
|
bagheera-server:
|
|
$(PYTHON) $(srcdir)/tests/run_server.py $(topsrcdir) \
|
|
$(MOZ_BUILD_ROOT) run_bagheera_server.js --port $(server_port)
|