2016-07-14 19:16:42 +03:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 01:19:09 +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/.
|
|
|
|
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += [
|
2013-02-26 01:19:09 +04:00
|
|
|
'components',
|
|
|
|
'content',
|
2017-11-14 16:49:33 +03:00
|
|
|
'crashreporter',
|
2013-02-26 01:19:09 +04:00
|
|
|
'forgetaboutsite',
|
|
|
|
'locales',
|
|
|
|
'modules',
|
|
|
|
'mozapps/downloads',
|
|
|
|
'mozapps/extensions',
|
|
|
|
'mozapps/handling',
|
|
|
|
'mozapps/preferences',
|
2015-09-15 05:08:06 +03:00
|
|
|
'pluginproblem',
|
2013-02-26 01:19:09 +04:00
|
|
|
'profile',
|
|
|
|
'themes',
|
|
|
|
]
|
|
|
|
|
2015-04-15 03:00:02 +03:00
|
|
|
if CONFIG['MOZ_UPDATER'] and CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
|
|
|
|
DIRS += ['mozapps/update']
|
2013-02-26 01:19:09 +04:00
|
|
|
|
2017-12-06 04:47:15 +03:00
|
|
|
if CONFIG['MOZ_MAINTENANCE_SERVICE'] or CONFIG['MOZ_UPDATER']:
|
2015-04-15 03:00:02 +03:00
|
|
|
DIRS += [
|
2017-12-06 04:47:15 +03:00
|
|
|
'mozapps/update/common',
|
2015-04-16 22:14:43 +03:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_MAINTENANCE_SERVICE']:
|
|
|
|
DIRS += [
|
2015-04-15 03:00:02 +03:00
|
|
|
'components/maintenanceservice'
|
|
|
|
]
|
2013-02-26 01:19:09 +04:00
|
|
|
|
|
|
|
DIRS += ['xre']
|
|
|
|
|
2018-01-10 12:04:59 +03:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'gtk3':
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += ['system/unixproxy']
|
2013-02-26 01:19:09 +04:00
|
|
|
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += ['system/osxproxy']
|
2013-02-26 01:19:09 +04:00
|
|
|
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += ['system/windowsproxy']
|
2013-02-26 01:19:09 +04:00
|
|
|
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += ['system/androidproxy']
|
2013-02-26 01:19:09 +04:00
|
|
|
|
2016-04-12 21:19:21 +03:00
|
|
|
TEST_HARNESS_FILES.testing.mochitest.browser.toolkit.crashreporter.test.browser += [
|
|
|
|
'crashreporter/test/browser/crashreport.sjs',
|
|
|
|
]
|
|
|
|
|
2017-09-13 12:19:00 +03:00
|
|
|
with Files('moz.*'):
|
|
|
|
BUG_COMPONENT = ('Core', 'Build Config')
|
|
|
|
|
|
|
|
with Files('toolkit.mozbuild'):
|
|
|
|
BUG_COMPONENT = ('Core', 'Build Config')
|
|
|
|
|
|
|
|
with Files('nss.configure'):
|
|
|
|
BUG_COMPONENT = ('Core', 'Build Config')
|
|
|
|
|
|
|
|
with Files('library/**'):
|
|
|
|
BUG_COMPONENT = ('Core', 'Build Config')
|
|
|
|
|
|
|
|
with Files('mozapps/installer/windows/**'):
|
2015-03-15 21:36:24 +03:00
|
|
|
BUG_COMPONENT = ('Toolkit', 'NSIS Installer')
|
|
|
|
|
2017-09-13 12:19:00 +03:00
|
|
|
with Files('mozapps/preferences/**'):
|
|
|
|
BUG_COMPONENT = ('Toolkit', 'Preferences')
|
|
|
|
|
|
|
|
with Files('pluginproblem/**'):
|
2015-03-15 21:36:24 +03:00
|
|
|
BUG_COMPONENT = ('Core', 'Plug-ins')
|
|
|
|
|