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-04-11 16:47:28 +03:00
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Firefox for Android', 'General')
|
|
|
|
|
|
|
|
with Files('extensions/**'):
|
2018-06-20 21:41:59 +03:00
|
|
|
BUG_COMPONENT = ('WebExtensions', 'Android')
|
2017-04-11 16:47:28 +03:00
|
|
|
|
2013-03-12 21:17:46 +04:00
|
|
|
XPIDL_SOURCES += [
|
|
|
|
'SessionStore.idl',
|
|
|
|
]
|
|
|
|
|
2013-11-19 06:47:43 +04:00
|
|
|
XPIDL_MODULE = 'MobileComponents'
|
2013-03-19 22:47:00 +04:00
|
|
|
|
2013-08-02 11:03:42 +04:00
|
|
|
EXTRA_COMPONENTS += [
|
2015-01-21 02:17:58 +03:00
|
|
|
'AboutRedirector.js',
|
2013-08-02 11:03:42 +04:00
|
|
|
'AddonUpdateService.js',
|
|
|
|
'BlocklistPrompt.js',
|
2015-01-21 02:17:58 +03:00
|
|
|
'BrowserCLH.js',
|
2013-12-12 03:51:01 +04:00
|
|
|
'ColorPicker.js',
|
2013-08-02 11:03:42 +04:00
|
|
|
'ContentDispatchChooser.js',
|
2016-03-19 00:41:51 +03:00
|
|
|
'ContentPermissionPrompt.js',
|
2015-01-21 02:17:58 +03:00
|
|
|
'DirectoryProvider.js',
|
2016-03-19 00:41:51 +03:00
|
|
|
'FilePicker.js',
|
2016-07-20 20:47:04 +03:00
|
|
|
'FxAccountsPush.js',
|
2016-03-19 00:41:51 +03:00
|
|
|
'HelperAppDialog.js',
|
2015-08-16 09:36:37 +03:00
|
|
|
'ImageBlockingPolicy.js',
|
2013-08-02 11:03:42 +04:00
|
|
|
'LoginManagerPrompter.js',
|
|
|
|
'NSSDialogService.js',
|
2016-05-12 04:28:46 +03:00
|
|
|
'PersistentNotificationHandler.js',
|
2016-04-25 06:34:23 +03:00
|
|
|
'PresentationDevicePrompt.js',
|
2016-08-30 13:16:31 +03:00
|
|
|
'PresentationRequestUIGlue.js',
|
2016-03-19 00:41:51 +03:00
|
|
|
'PromptService.js',
|
|
|
|
'SessionStore.js',
|
2014-03-18 23:05:46 +04:00
|
|
|
'TabSource.js',
|
2013-08-02 11:03:42 +04:00
|
|
|
'XPIDialogService.js',
|
|
|
|
]
|
|
|
|
|
2015-01-21 02:17:58 +03:00
|
|
|
# Keep it this way if at all possible. If you need preprocessing,
|
|
|
|
# consider adding fields to AppConstants.jsm.
|
2013-06-14 22:07:19 +04:00
|
|
|
EXTRA_PP_COMPONENTS += [
|
|
|
|
'MobileComponents.manifest',
|
|
|
|
]
|
2013-08-02 11:03:42 +04:00
|
|
|
|
2016-04-28 02:06:24 +03:00
|
|
|
DIRS += [
|
|
|
|
'extensions',
|
|
|
|
'build',
|
2017-04-19 00:45:02 +03:00
|
|
|
'geckoview',
|
2018-06-05 00:45:50 +03:00
|
|
|
'search',
|
2016-04-28 02:06:24 +03:00
|
|
|
]
|