2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 00:47:18 +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-08-25 20:08:45 +03:00
|
|
|
with Files("**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
|
|
|
with Files("distribution.js"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Distributions")
|
|
|
|
|
2017-04-19 15:11:47 +03:00
|
|
|
with Files("tests/**"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
|
|
|
with Files("tests/browser/browser_bug538331.js"):
|
|
|
|
BUG_COMPONENT = ("Toolkit", "Application Update")
|
|
|
|
|
|
|
|
with Files("tests/browser/browser_contentpermissionprompt.js"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Site Identity and Permission Panels")
|
|
|
|
|
|
|
|
with Files("tests/unit/test_browserGlue_migration_loop_cleanup.js"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "General")
|
|
|
|
|
|
|
|
with Files("tests/unit/test_distribution.js"):
|
|
|
|
BUG_COMPONENT = ("Firefox", "Distributions")
|
|
|
|
|
|
|
|
with Files("safebrowsing/**"):
|
|
|
|
BUG_COMPONENT = ("Toolkit", "Safe Browsing")
|
|
|
|
|
2017-05-02 00:12:16 +03:00
|
|
|
with Files('controlcenter/**'):
|
|
|
|
BUG_COMPONENT = ('Firefox', 'General')
|
|
|
|
|
2017-04-19 15:11:47 +03:00
|
|
|
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += [
|
2013-02-26 00:47:18 +04:00
|
|
|
'about',
|
2015-12-01 21:21:42 +03:00
|
|
|
'contextualidentity',
|
2013-04-15 09:34:52 +04:00
|
|
|
'customizableui',
|
2013-02-26 00:47:18 +04:00
|
|
|
'dirprovider',
|
|
|
|
'downloads',
|
2015-06-04 01:34:44 +03:00
|
|
|
'extensions',
|
2013-02-26 00:47:18 +04:00
|
|
|
'feeds',
|
2015-01-06 09:13:46 +03:00
|
|
|
'migration',
|
2015-10-12 08:29:12 +03:00
|
|
|
'newtab',
|
2016-08-22 17:05:01 +03:00
|
|
|
'originattributes',
|
2013-02-26 00:47:18 +04:00
|
|
|
'places',
|
|
|
|
'preferences',
|
|
|
|
'privatebrowsing',
|
2017-03-29 10:43:56 +03:00
|
|
|
'resistfingerprinting',
|
2013-02-26 00:47:18 +04:00
|
|
|
'search',
|
|
|
|
'sessionstore',
|
|
|
|
'shell',
|
2016-01-28 01:40:30 +03:00
|
|
|
'syncedtabs',
|
2015-01-06 09:13:46 +03:00
|
|
|
'uitour',
|
2014-05-28 02:45:45 +04:00
|
|
|
'translation',
|
2013-02-26 00:47:18 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
DIRS += ['build']
|
2013-03-12 21:17:46 +04:00
|
|
|
|
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'nsIBrowserGlue.idl',
|
|
|
|
'nsIBrowserHandler.idl',
|
|
|
|
]
|
|
|
|
|
2013-03-12 09:00:00 +04:00
|
|
|
XPIDL_MODULE = 'browsercompsbase'
|
|
|
|
|
2013-06-14 22:07:19 +04:00
|
|
|
EXTRA_PP_COMPONENTS += [
|
2014-05-12 18:35:00 +04:00
|
|
|
'BrowserComponents.manifest',
|
2013-06-14 22:07:19 +04:00
|
|
|
]
|
2013-06-28 23:17:07 +04:00
|
|
|
|
2015-06-19 18:52:44 +03:00
|
|
|
EXTRA_COMPONENTS += [
|
|
|
|
'nsBrowserContentHandler.js',
|
2016-01-22 23:48:20 +03:00
|
|
|
'nsBrowserGlue.js',
|
2017-06-01 00:00:43 +03:00
|
|
|
'tests/startupRecorder.js',
|
|
|
|
'tests/testComponents.manifest',
|
2015-06-19 18:52:44 +03:00
|
|
|
]
|
|
|
|
|
2013-06-28 23:17:07 +04:00
|
|
|
EXTRA_JS_MODULES += [
|
|
|
|
'distribution.js',
|
|
|
|
]
|
|
|
|
|
2013-10-18 16:55:19 +04:00
|
|
|
BROWSER_CHROME_MANIFESTS += [
|
2016-09-01 02:28:29 +03:00
|
|
|
'safebrowsing/content/test/browser.ini',
|
2016-02-25 21:40:39 +03:00
|
|
|
'tests/browser/browser.ini'
|
|
|
|
]
|
|
|
|
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += [
|
|
|
|
'tests/unit/xpcshell.ini'
|
2013-10-18 16:55:19 +04:00
|
|
|
]
|