2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:23 +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/.
|
|
|
|
|
2017-03-09 13:33:31 +03:00
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Core', 'Preferences: Backend')
|
|
|
|
|
2017-04-08 17:45:10 +03:00
|
|
|
if CONFIG['ENABLE_TESTS']:
|
|
|
|
DIRS += ['test/gtest']
|
|
|
|
|
2015-02-10 19:47:27 +03:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += [
|
|
|
|
'test/unit/xpcshell.ini',
|
|
|
|
'test/unit_ipc/xpcshell.ini',
|
|
|
|
]
|
2013-03-19 22:47:00 +04:00
|
|
|
|
2014-08-08 08:52:04 +04:00
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'nsIPrefBranch.idl',
|
|
|
|
'nsIPrefLocalizedString.idl',
|
|
|
|
'nsIPrefService.idl',
|
|
|
|
'nsIRelativeFilePref.idl',
|
|
|
|
]
|
|
|
|
|
|
|
|
XPIDL_MODULE = 'pref'
|
|
|
|
|
2019-07-26 02:16:08 +03:00
|
|
|
pref_groups = [
|
|
|
|
'accessibility',
|
|
|
|
'apz',
|
|
|
|
'beacon',
|
2019-08-13 07:41:51 +03:00
|
|
|
'bidi',
|
2019-07-26 02:16:08 +03:00
|
|
|
'browser',
|
|
|
|
'canvas',
|
|
|
|
'channelclassifier',
|
|
|
|
'clipboard',
|
2019-08-01 19:05:49 +03:00
|
|
|
'content',
|
2020-01-13 21:52:06 +03:00
|
|
|
'datareporting',
|
2019-07-26 02:16:08 +03:00
|
|
|
'device',
|
|
|
|
'devtools',
|
2019-05-22 23:19:19 +03:00
|
|
|
'docshell',
|
2019-07-26 02:16:08 +03:00
|
|
|
'dom',
|
|
|
|
'editor',
|
|
|
|
'extensions',
|
2019-08-27 03:09:29 +03:00
|
|
|
'findbar',
|
2019-07-26 02:16:08 +03:00
|
|
|
'fission',
|
2019-08-13 03:07:32 +03:00
|
|
|
'font',
|
2019-07-26 02:16:08 +03:00
|
|
|
'full_screen_api',
|
|
|
|
'general',
|
|
|
|
'geo',
|
|
|
|
'gfx',
|
|
|
|
'gl',
|
|
|
|
'html5',
|
|
|
|
'idle_period',
|
|
|
|
'image',
|
|
|
|
'intl',
|
|
|
|
'javascript',
|
|
|
|
'keyword',
|
|
|
|
'layers',
|
|
|
|
'layout',
|
2019-08-16 20:41:59 +03:00
|
|
|
'mathml',
|
2019-07-26 02:16:08 +03:00
|
|
|
'media',
|
|
|
|
'mousewheel',
|
|
|
|
'network',
|
|
|
|
'nglayout',
|
2019-08-02 11:52:42 +03:00
|
|
|
'page_load',
|
2019-09-21 11:38:26 +03:00
|
|
|
'permissions',
|
2019-07-26 02:16:08 +03:00
|
|
|
'plain_text',
|
2019-11-14 00:17:12 +03:00
|
|
|
'plugin',
|
2019-07-26 02:16:08 +03:00
|
|
|
'plugins',
|
|
|
|
'preferences',
|
|
|
|
'print',
|
|
|
|
'privacy',
|
|
|
|
'security',
|
|
|
|
'slider',
|
|
|
|
'svg',
|
|
|
|
'telemetry',
|
|
|
|
'test',
|
|
|
|
'threads',
|
|
|
|
'toolkit',
|
|
|
|
'ui',
|
|
|
|
'view_source',
|
|
|
|
'webgl',
|
|
|
|
'widget',
|
|
|
|
'xul',
|
2019-08-14 21:29:55 +03:00
|
|
|
'zoom',
|
2019-07-26 02:16:08 +03:00
|
|
|
]
|
|
|
|
if CONFIG['OS_TARGET'] == 'Android':
|
|
|
|
pref_groups += [
|
2019-08-26 23:25:43 +03:00
|
|
|
'android',
|
|
|
|
'consoleservice',
|
2019-07-26 02:16:08 +03:00
|
|
|
]
|
|
|
|
if CONFIG['FUZZING']:
|
|
|
|
pref_groups += [
|
|
|
|
'fuzzing'
|
|
|
|
]
|
|
|
|
pref_groups = tuple(sorted(pref_groups))
|
|
|
|
|
2019-08-07 08:16:55 +03:00
|
|
|
# Note: generate_static_pref_list.py relies on StaticPrefListAll.h being first.
|
|
|
|
gen_h = ['init/StaticPrefListAll.h']
|
|
|
|
gen_h += ['StaticPrefsAll.h']
|
|
|
|
gen_h += ['init/StaticPrefList_{}.h'.format(pg) for pg in pref_groups]
|
|
|
|
gen_h += ['StaticPrefs_{}.h'.format(pg) for pg in pref_groups]
|
|
|
|
|
|
|
|
gen_cpp = ['init/StaticPrefsCGetters.cpp']
|
2019-07-26 02:16:08 +03:00
|
|
|
|
2019-08-07 08:16:55 +03:00
|
|
|
gen_rs = ['static_prefs.rs']
|
2019-07-26 02:16:08 +03:00
|
|
|
|
2014-08-08 08:52:04 +04:00
|
|
|
EXPORTS.mozilla += [
|
2019-07-09 02:40:39 +03:00
|
|
|
'init/StaticPrefListBegin.h',
|
|
|
|
'init/StaticPrefListEnd.h',
|
2018-08-21 00:28:00 +03:00
|
|
|
'nsRelativeFilePref.h',
|
2014-08-08 08:52:04 +04:00
|
|
|
'Preferences.h',
|
2019-07-09 02:40:39 +03:00
|
|
|
'StaticPrefsBase.h',
|
2014-08-08 08:52:04 +04:00
|
|
|
]
|
2019-08-07 08:16:55 +03:00
|
|
|
EXPORTS.mozilla += sorted(['!' + g for g in gen_h])
|
|
|
|
|
|
|
|
UNIFIED_SOURCES += [
|
|
|
|
'Preferences.cpp',
|
|
|
|
'SharedPrefMap.cpp',
|
|
|
|
]
|
|
|
|
|
|
|
|
gen_all_tuple = tuple(gen_h + gen_cpp + gen_rs)
|
2014-08-08 08:52:04 +04:00
|
|
|
|
2019-08-07 08:16:55 +03:00
|
|
|
GENERATED_FILES += [gen_all_tuple]
|
2014-08-08 08:52:04 +04:00
|
|
|
|
2019-08-07 08:16:55 +03:00
|
|
|
static_pref_list = GENERATED_FILES[gen_all_tuple]
|
2019-08-07 08:08:09 +03:00
|
|
|
static_pref_list.script = 'init/generate_static_pref_list.py:emit_code'
|
2019-07-26 02:16:08 +03:00
|
|
|
static_pref_list.inputs = ['init/StaticPrefList.yaml']
|
2019-07-18 03:08:20 +03:00
|
|
|
|
|
|
|
PYTHON_UNITTEST_MANIFESTS += [
|
|
|
|
'test/python.ini',
|
|
|
|
]
|
|
|
|
|
2019-01-30 03:03:41 +03:00
|
|
|
XPCOM_MANIFESTS += [
|
|
|
|
'components.conf',
|
|
|
|
]
|
|
|
|
|
2019-11-08 02:07:20 +03:00
|
|
|
SPHINX_TREES['/modules/libpref'] = 'docs'
|
2019-08-01 05:11:07 +03:00
|
|
|
|
2014-08-08 08:52:04 +04:00
|
|
|
include('/ipc/chromium/chromium-config.mozbuild')
|
|
|
|
|
|
|
|
FINAL_LIBRARY = 'xul'
|
|
|
|
|
|
|
|
DEFINES['OS_ARCH'] = CONFIG['OS_ARCH']
|
|
|
|
DEFINES['MOZ_WIDGET_TOOLKIT'] = CONFIG['MOZ_WIDGET_TOOLKIT']
|
2015-09-23 07:39:03 +03:00
|
|
|
|
2019-08-09 12:18:41 +03:00
|
|
|
if CONFIG['MOZ_SERVICES_SYNC']:
|
|
|
|
DEFINES['MOZ_SERVICES_SYNC'] = True
|
|
|
|
|
2019-10-14 18:58:42 +03:00
|
|
|
if CONFIG['MOZ_BUILD_APP'] == 'browser':
|
|
|
|
DEFINES['MOZ_BUILD_APP_IS_BROWSER'] = True
|
|
|
|
|
2019-05-22 21:27:11 +03:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
2019-05-30 18:22:09 +03:00
|
|
|
if not CONFIG['MOZ_ANDROID_FAT_AAR_ARCHITECTURES']:
|
|
|
|
FINAL_TARGET_PP_FILES[CONFIG['ANDROID_CPU_ARCH']] += [
|
|
|
|
'greprefs.js',
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
for arch in CONFIG['MOZ_ANDROID_FAT_AAR_ARCHITECTURES']:
|
|
|
|
FINAL_TARGET_FILES[arch] += [
|
|
|
|
'!/dist/fat-aar/output/{arch}/greprefs.js'.format(arch=arch),
|
|
|
|
]
|
|
|
|
else:
|
|
|
|
FINAL_TARGET_PP_FILES += [
|
|
|
|
'greprefs.js',
|
|
|
|
]
|