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