mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
b72f214116
Metrics for Sync have been added to Firefox Health Report. If Sync is not configured, we'll report that fact and the supported and preferred Sync protocols (1.1 or 1.5). If Sync is configured, we report the daily counts of sync attempts and how many are successful vs errored. We also report daily counts of the device types attached to the account. --HG-- extra : rebase_source : 77170b323706a85cbe1542ac993ebdc1dba3b505 extra : amend_source : 7802e80b4fc94937fbe3f67505b447bfb048732d
80 lines
1.9 KiB
Makefile
80 lines
1.9 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/.
|
|
|
|
# Definitions used by constants.js.
|
|
weave_version := 1.32.0
|
|
weave_id := {340c2bbc-ce74-4362-90b5-7c26312808ef}
|
|
|
|
# Preprocess files.
|
|
SYNC_PP := modules/constants.js
|
|
SYNC_PP_FLAGS := \
|
|
-Dweave_version=$(weave_version) \
|
|
-Dweave_id='$(weave_id)'
|
|
SYNC_PP_PATH = $(FINAL_TARGET)/modules/services-sync
|
|
PP_TARGETS += SYNC_PP
|
|
|
|
# The set of core JavaScript modules for Sync. These are copied as-is.
|
|
sync_modules := \
|
|
addonsreconciler.js \
|
|
addonutils.js \
|
|
browserid_identity.js \
|
|
engines.js \
|
|
healthreport.jsm \
|
|
identity.js \
|
|
jpakeclient.js \
|
|
keys.js \
|
|
main.js \
|
|
notifications.js \
|
|
policies.js \
|
|
record.js \
|
|
resource.js \
|
|
rest.js \
|
|
service.js \
|
|
status.js \
|
|
userapi.js \
|
|
util.js \
|
|
$(NULL)
|
|
|
|
# The set of JavaScript modules provide engines for Sync. These are
|
|
# copied as-is.
|
|
sync_engine_modules := \
|
|
addons.js \
|
|
bookmarks.js \
|
|
clients.js \
|
|
forms.js \
|
|
history.js \
|
|
passwords.js \
|
|
prefs.js \
|
|
tabs.js \
|
|
$(NULL)
|
|
|
|
sync_stage_modules := \
|
|
cluster.js \
|
|
enginesync.js \
|
|
$(NULL)
|
|
|
|
sync_testing_modules := \
|
|
fakeservices.js \
|
|
rotaryengine.js \
|
|
utils.js \
|
|
$(NULL)
|
|
|
|
PREF_JS_EXPORTS := $(srcdir)/services-sync.js
|
|
|
|
# Install JS module files.
|
|
SYNC_MAIN_FILES := $(addprefix modules/,$(sync_modules))
|
|
SYNC_MAIN_DEST = $(FINAL_TARGET)/modules/services-sync
|
|
INSTALL_TARGETS += SYNC_MAIN
|
|
|
|
SYNC_ENGINES_FILES := $(addprefix modules/engines/,$(sync_engine_modules))
|
|
SYNC_ENGINES_DEST = $(FINAL_TARGET)/modules/services-sync/engines
|
|
INSTALL_TARGETS += SYNC_ENGINES
|
|
|
|
SYNC_STAGES_FILES := $(addprefix modules/stages/,$(sync_stage_modules))
|
|
SYNC_STAGES_DEST = $(FINAL_TARGET)/modules/services-sync/stages
|
|
INSTALL_TARGETS += SYNC_STAGES
|
|
|
|
TESTING_JS_MODULES := $(addprefix modules-testing/,$(sync_testing_modules))
|
|
TESTING_JS_MODULE_DIR := services/sync
|