2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; 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/.
|
|
|
|
|
2014-07-29 05:02:44 +04:00
|
|
|
BROWSER_CHROME_MANIFESTS += ['test/browser.ini']
|
2014-09-22 11:53:19 +04:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += [
|
|
|
|
'test/unit/social/xpcshell.ini',
|
|
|
|
'test/xpcshell/xpcshell.ini',
|
|
|
|
]
|
2013-02-26 00:47:18 +04:00
|
|
|
|
2013-06-28 23:17:07 +04:00
|
|
|
EXTRA_JS_MODULES += [
|
2015-03-12 18:25:32 +03:00
|
|
|
'AboutHome.jsm',
|
2015-06-15 22:36:43 +03:00
|
|
|
'AboutNewTab.jsm',
|
2013-12-10 23:49:02 +04:00
|
|
|
'BrowserUITelemetry.jsm',
|
2014-10-18 02:55:14 +04:00
|
|
|
'CastingApps.jsm',
|
2014-05-10 06:03:07 +04:00
|
|
|
'Chat.jsm',
|
2013-08-09 04:16:47 +04:00
|
|
|
'ContentClick.jsm',
|
2015-03-28 06:34:15 +03:00
|
|
|
'ContentCrashReporters.jsm',
|
2014-02-09 05:41:34 +04:00
|
|
|
'ContentLinkHandler.jsm',
|
2015-02-04 20:13:38 +03:00
|
|
|
'ContentObservers.jsm',
|
2014-04-25 06:09:20 +04:00
|
|
|
'ContentSearch.jsm',
|
2014-09-22 22:39:57 +04:00
|
|
|
'ContentWebRTC.jsm',
|
2014-02-25 21:51:41 +04:00
|
|
|
'CustomizationTabPreloader.jsm',
|
2014-09-22 11:53:19 +04:00
|
|
|
'DirectoryLinksProvider.jsm',
|
2014-09-25 22:35:45 +04:00
|
|
|
'E10SUtils.jsm',
|
2014-02-09 05:41:30 +04:00
|
|
|
'Feeds.jsm',
|
2014-08-21 19:42:42 +04:00
|
|
|
'FormSubmitObserver.jsm',
|
|
|
|
'FormValidationHandler.jsm',
|
2015-02-04 08:33:00 +03:00
|
|
|
'HiddenFrame.jsm',
|
2013-06-28 23:17:07 +04:00
|
|
|
'NetworkPrioritizer.jsm',
|
2015-05-28 03:35:03 +03:00
|
|
|
'NewTabURL.jsm',
|
2013-10-24 03:05:43 +04:00
|
|
|
'offlineAppCache.jsm',
|
2014-06-17 14:23:40 +04:00
|
|
|
'PanelFrame.jsm',
|
2015-03-12 18:25:32 +03:00
|
|
|
'PluginContent.jsm',
|
2015-01-17 05:34:47 +03:00
|
|
|
'ProcessHangMonitor.jsm',
|
2015-02-11 03:25:27 +03:00
|
|
|
'ReaderParent.jsm',
|
2015-03-12 18:25:32 +03:00
|
|
|
'RecentWindow.jsm',
|
2014-04-05 01:50:42 +04:00
|
|
|
'RemotePrompt.jsm',
|
2015-01-27 10:11:00 +03:00
|
|
|
'SelfSupportBackend.jsm',
|
2013-06-28 23:17:07 +04:00
|
|
|
'SitePermissions.jsm',
|
|
|
|
'Social.jsm',
|
2015-04-28 19:30:19 +03:00
|
|
|
'TransientPrefs.jsm',
|
2014-03-16 01:37:37 +04:00
|
|
|
'WebappManager.jsm',
|
2015-03-12 18:25:32 +03:00
|
|
|
'webrtcUI.jsm',
|
2013-06-28 23:17:07 +04:00
|
|
|
]
|
|
|
|
|
|
|
|
if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows':
|
|
|
|
EXTRA_JS_MODULES += [
|
2014-03-21 04:23:36 +04:00
|
|
|
'Windows8WindowFrameColor.jsm',
|
2013-06-28 23:17:07 +04:00
|
|
|
'WindowsJumpLists.jsm',
|
|
|
|
'WindowsPreviewPerTab.jsm',
|
|
|
|
]
|
2013-08-02 11:03:25 +04:00
|
|
|
|
2014-03-23 07:46:18 +04:00
|
|
|
if CONFIG['NIGHTLY_BUILD']:
|
|
|
|
EXTRA_JS_MODULES += [
|
|
|
|
'SignInToWebsite.jsm',
|
|
|
|
]
|
|
|
|
|
2014-11-20 23:21:29 +03:00
|
|
|
EXTRA_PP_COMPONENTS += [
|
|
|
|
'browsermodules.manifest',
|
|
|
|
]
|
|
|
|
|
2013-11-27 17:55:07 +04:00
|
|
|
if CONFIG['MOZILLA_OFFICIAL']:
|
|
|
|
DEFINES['MOZILLA_OFFICIAL'] = 1
|