2016-07-14 16:16:42 +00:00
|
|
|
# -*- Mode: python; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 21:19:09 +00: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-28 23:57:59 +00:00
|
|
|
DIRS += [
|
2013-02-25 21:19:09 +00:00
|
|
|
'components',
|
|
|
|
'content',
|
|
|
|
'forgetaboutsite',
|
|
|
|
'identity',
|
|
|
|
'locales',
|
|
|
|
'modules',
|
|
|
|
'mozapps/downloads',
|
|
|
|
'mozapps/extensions',
|
|
|
|
'mozapps/handling',
|
|
|
|
'mozapps/preferences',
|
2015-09-15 02:08:06 +00:00
|
|
|
'pluginproblem',
|
2013-02-25 21:19:09 +00:00
|
|
|
'profile',
|
|
|
|
'themes',
|
|
|
|
]
|
|
|
|
|
2015-04-15 00:00:02 +00:00
|
|
|
if CONFIG['MOZ_UPDATER'] and CONFIG['MOZ_WIDGET_TOOLKIT'] != 'android':
|
|
|
|
DIRS += ['mozapps/update']
|
2013-02-25 21:19:09 +00:00
|
|
|
|
2015-04-16 19:14:43 +00:00
|
|
|
if CONFIG['MOZ_MAINTENANCE_SERVICE'] or CONFIG['MOZ_UPDATER'] and CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
|
2015-04-15 00:00:02 +00:00
|
|
|
# Including mozapps/update/common-standalone allows the maintenance service
|
|
|
|
# to be built so the maintenance service can be used for things other than
|
|
|
|
# updating applications.
|
|
|
|
DIRS += [
|
|
|
|
'mozapps/update/common-standalone',
|
2015-04-16 19:14:43 +00:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_MAINTENANCE_SERVICE']:
|
|
|
|
DIRS += [
|
2015-04-15 00:00:02 +00:00
|
|
|
'components/maintenanceservice'
|
|
|
|
]
|
2013-02-25 21:19:09 +00:00
|
|
|
|
|
|
|
DIRS += ['xre']
|
|
|
|
|
2016-07-11 23:16:45 +00:00
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] in ('gtk2', 'gtk3'):
|
2014-07-28 23:57:59 +00:00
|
|
|
DIRS += ['system/unixproxy']
|
2013-02-25 21:19:09 +00:00
|
|
|
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'cocoa':
|
2014-07-28 23:57:59 +00:00
|
|
|
DIRS += ['system/osxproxy']
|
2013-02-25 21:19:09 +00:00
|
|
|
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
|
2014-07-28 23:57:59 +00:00
|
|
|
DIRS += ['system/windowsproxy']
|
2013-02-25 21:19:09 +00:00
|
|
|
elif CONFIG['MOZ_WIDGET_TOOLKIT'] == 'android':
|
2014-07-28 23:57:59 +00:00
|
|
|
DIRS += ['system/androidproxy']
|
2013-02-25 21:19:09 +00:00
|
|
|
|
|
|
|
if CONFIG['MOZ_CRASHREPORTER']:
|
2014-07-28 23:57:59 +00:00
|
|
|
DIRS += ['crashreporter']
|
2015-03-15 18:36:24 +00:00
|
|
|
|
2016-04-12 18:19:21 +00:00
|
|
|
TEST_HARNESS_FILES.testing.mochitest.browser.toolkit.crashreporter.test.browser += [
|
|
|
|
'crashreporter/test/browser/crashreport.sjs',
|
|
|
|
]
|
|
|
|
|
2015-03-15 18:36:24 +00:00
|
|
|
with Files('mozapps/installer/windows/*'):
|
|
|
|
BUG_COMPONENT = ('Toolkit', 'NSIS Installer')
|
|
|
|
|
2015-09-15 02:08:06 +00:00
|
|
|
with Files('pluginproblem/*'):
|
2015-03-15 18:36:24 +00:00
|
|
|
BUG_COMPONENT = ('Core', 'Plug-ins')
|
|
|
|
|
|
|
|
with Files('mozapps/preferences/*'):
|
|
|
|
BUG_COMPONENT = ('Toolkit', 'Preferences')
|