2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:24 +04:00
|
|
|
# vim: set filetype=python:
|
|
|
|
# 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/.
|
|
|
|
|
2015-02-26 22:43:45 +03:00
|
|
|
with Files('**'):
|
2017-03-09 13:33:31 +03:00
|
|
|
BUG_COMPONENT = ('Cloud Services', 'Firefox: Common')
|
2015-02-26 22:43:45 +03:00
|
|
|
|
2013-02-26 00:47:24 +04:00
|
|
|
TEST_DIRS += ['tests']
|
2013-06-12 00:38:22 +04:00
|
|
|
|
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'servicesComponents.manifest',
|
|
|
|
]
|
2014-07-03 03:43:41 +04:00
|
|
|
|
2014-07-28 23:24:01 +04:00
|
|
|
EXTRA_JS_MODULES['services-common'] += [
|
2016-01-28 10:42:16 +03:00
|
|
|
'async.js',
|
2016-04-28 14:24:21 +03:00
|
|
|
'blocklist-clients.js',
|
2016-04-15 02:07:31 +03:00
|
|
|
'kinto-http-client.js',
|
|
|
|
'kinto-offline-client.js',
|
2016-11-16 03:38:53 +03:00
|
|
|
'kinto-storage-adapter.js',
|
2015-02-18 00:06:00 +03:00
|
|
|
'logmanager.js',
|
2016-01-28 10:42:16 +03:00
|
|
|
'observers.js',
|
2018-03-13 18:23:57 +03:00
|
|
|
'remote-settings.js',
|
2016-01-28 10:42:16 +03:00
|
|
|
'rest.js',
|
2017-03-22 13:27:17 +03:00
|
|
|
'uptake-telemetry.js',
|
2014-07-28 23:24:01 +04:00
|
|
|
'utils.js',
|
|
|
|
]
|
|
|
|
|
2016-03-19 00:41:51 +03:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
|
2015-03-31 01:02:51 +03:00
|
|
|
EXTRA_JS_MODULES['services-common'] += [
|
|
|
|
'hawkclient.js',
|
|
|
|
'hawkrequest.js',
|
|
|
|
'tokenserverclient.js',
|
|
|
|
]
|
|
|
|
|
2014-07-03 03:43:41 +04:00
|
|
|
TESTING_JS_MODULES.services.common += [
|
|
|
|
'modules-testing/logging.js',
|
|
|
|
]
|
2015-01-20 21:07:03 +03:00
|
|
|
|
|
|
|
JS_PREFERENCE_FILES += [
|
|
|
|
'services-common.js',
|
|
|
|
]
|
|
|
|
|