2013-04-01 11:36:59 -07:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-25 13:19:09 -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/.
|
|
|
|
|
|
|
|
TEST_DIRS += ['tests']
|
2013-06-17 12:22:56 -07:00
|
|
|
|
|
|
|
EXTRA_JS_MODULES += [
|
2013-09-14 09:48:39 -07:00
|
|
|
'AsyncShutdown.jsm',
|
2014-01-06 00:44:19 -08:00
|
|
|
'CharsetMenu.jsm',
|
2013-10-23 16:05:43 -07:00
|
|
|
'debug.js',
|
2013-06-17 12:22:56 -07:00
|
|
|
'DeferredTask.jsm',
|
|
|
|
'Deprecated.jsm',
|
|
|
|
'Dict.jsm',
|
|
|
|
'FileUtils.jsm',
|
2013-09-13 07:41:23 -07:00
|
|
|
'Finder.jsm',
|
2013-06-17 12:22:56 -07:00
|
|
|
'Geometry.jsm',
|
2013-06-20 05:38:32 -07:00
|
|
|
'Http.jsm',
|
2013-06-17 12:22:56 -07:00
|
|
|
'InlineSpellChecker.jsm',
|
2013-09-20 02:11:25 -07:00
|
|
|
'LoadContextInfo.jsm',
|
2013-08-26 11:55:58 -07:00
|
|
|
'Log.jsm',
|
2013-06-17 12:22:56 -07:00
|
|
|
'NewTabUtils.jsm',
|
|
|
|
'PageMenu.jsm',
|
2013-10-09 18:30:34 -07:00
|
|
|
'PermissionsUtils.jsm',
|
2013-06-17 12:22:56 -07:00
|
|
|
'PopupNotifications.jsm',
|
|
|
|
'Preferences.jsm',
|
|
|
|
'PrivateBrowsingUtils.jsm',
|
|
|
|
'Promise.jsm',
|
|
|
|
'PropertyListUtils.jsm',
|
2013-08-28 21:43:00 -07:00
|
|
|
'RemoteAddonsChild.jsm',
|
|
|
|
'RemoteAddonsParent.jsm',
|
2013-08-21 10:24:53 -07:00
|
|
|
'RemoteController.jsm',
|
2013-09-13 16:27:19 -07:00
|
|
|
'RemoteFinder.jsm',
|
2013-07-09 19:45:07 -07:00
|
|
|
'RemoteSecurityUI.jsm',
|
2013-08-06 09:35:39 -07:00
|
|
|
'RemoteWebNavigation.jsm',
|
2013-06-17 12:22:56 -07:00
|
|
|
'RemoteWebProgress.jsm',
|
2013-08-25 18:34:23 -07:00
|
|
|
'SelectContentHelper.jsm',
|
|
|
|
'SelectParentHelper.jsm',
|
2013-10-20 13:50:37 -07:00
|
|
|
'ShortcutUtils.jsm',
|
2013-06-22 07:22:05 -07:00
|
|
|
'Sntp.jsm',
|
2013-10-12 10:59:50 -07:00
|
|
|
'SpatialNavigation.jsm',
|
2013-06-17 12:22:56 -07:00
|
|
|
'Sqlite.jsm',
|
|
|
|
'Task.jsm',
|
|
|
|
'TelemetryTimestamps.jsm',
|
|
|
|
'Timer.jsm',
|
|
|
|
]
|
|
|
|
|
2013-08-02 00:03:25 -07:00
|
|
|
EXTRA_PP_JS_MODULES += [
|
|
|
|
'CertUtils.jsm',
|
|
|
|
'ResetProfile.jsm',
|
|
|
|
'Services.jsm',
|
|
|
|
'Troubleshoot.jsm',
|
|
|
|
'UpdateChannel.jsm',
|
|
|
|
'WindowDraggingUtils.jsm',
|
2013-11-19 12:54:03 -08:00
|
|
|
'WindowsPrefSync.jsm',
|
2013-08-02 00:03:25 -07:00
|
|
|
]
|
|
|
|
|
|
|
|
if 'Android' != CONFIG['OS_TARGET']:
|
|
|
|
EXTRA_PP_JS_MODULES += [
|
|
|
|
'LightweightThemeConsumer.jsm',
|
|
|
|
]
|
|
|
|
|
2013-11-27 05:55:07 -08:00
|
|
|
DEFINES['MOZ_APP_NAME'] = CONFIG['MOZ_APP_NAME']
|
|
|
|
DEFINES['MOZ_BUILD_APP'] = CONFIG['MOZ_BUILD_APP']
|
|
|
|
|
|
|
|
if CONFIG['MOZ_TOOLKIT_SEARCH']:
|
|
|
|
DEFINES['MOZ_TOOLKIT_SEARCH'] = True
|