1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/toolkit/modules/moz.build Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,85 @@ 1.4 +# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- 1.5 +# vim: set filetype=python: 1.6 +# This Source Code Form is subject to the terms of the Mozilla Public 1.7 +# License, v. 2.0. If a copy of the MPL was not distributed with this 1.8 +# file, You can obtain one at http://mozilla.org/MPL/2.0/. 1.9 + 1.10 +XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell/xpcshell.ini'] 1.11 +BROWSER_CHROME_MANIFESTS += ['tests/browser/browser.ini'] 1.12 +MOCHITEST_MANIFESTS += ['tests/mochitest/mochitest.ini'] 1.13 +MOCHITEST_CHROME_MANIFESTS += ['tests/chrome/chrome.ini'] 1.14 + 1.15 +EXTRA_JS_MODULES += [ 1.16 + 'AsyncShutdown.jsm', 1.17 + 'BinarySearch.jsm', 1.18 + 'BrowserUtils.jsm', 1.19 + 'CharsetMenu.jsm', 1.20 + 'debug.js', 1.21 + 'DeferredTask.jsm', 1.22 + 'Deprecated.jsm', 1.23 + 'Dict.jsm', 1.24 + 'DirectoryLinksProvider.jsm', 1.25 + 'FileUtils.jsm', 1.26 + 'Finder.jsm', 1.27 + 'Geometry.jsm', 1.28 + 'Http.jsm', 1.29 + 'InlineSpellChecker.jsm', 1.30 + 'LoadContextInfo.jsm', 1.31 + 'Log.jsm', 1.32 + 'NewTabUtils.jsm', 1.33 + 'PageMenu.jsm', 1.34 + 'PermissionsUtils.jsm', 1.35 + 'PopupNotifications.jsm', 1.36 + 'Preferences.jsm', 1.37 + 'PrivateBrowsingUtils.jsm', 1.38 + 'Promise-backend.js', 1.39 + 'Promise.jsm', 1.40 + 'PropertyListUtils.jsm', 1.41 + 'RemoteAddonsChild.jsm', 1.42 + 'RemoteAddonsParent.jsm', 1.43 + 'RemoteController.jsm', 1.44 + 'RemoteFinder.jsm', 1.45 + 'RemoteSecurityUI.jsm', 1.46 + 'RemoteWebNavigation.jsm', 1.47 + 'RemoteWebProgress.jsm', 1.48 + 'SelectContentHelper.jsm', 1.49 + 'SelectParentHelper.jsm', 1.50 + 'sessionstore/FormData.jsm', 1.51 + 'sessionstore/ScrollPosition.jsm', 1.52 + 'sessionstore/XPathGenerator.jsm', 1.53 + 'ShortcutUtils.jsm', 1.54 + 'Sntp.jsm', 1.55 + 'SpatialNavigation.jsm', 1.56 + 'Sqlite.jsm', 1.57 + 'Task.jsm', 1.58 + 'TelemetryTimestamps.jsm', 1.59 + 'Timer.jsm', 1.60 + 'ZipUtils.jsm', 1.61 +] 1.62 + 1.63 +EXTRA_PP_JS_MODULES += [ 1.64 + 'CertUtils.jsm', 1.65 + 'ResetProfile.jsm', 1.66 + 'Services.jsm', 1.67 + 'Troubleshoot.jsm', 1.68 + 'UpdateChannel.jsm', 1.69 + 'WindowDraggingUtils.jsm', 1.70 + 'WindowsPrefSync.jsm', 1.71 +] 1.72 + 1.73 +if 'Android' != CONFIG['OS_TARGET']: 1.74 + EXTRA_PP_JS_MODULES += [ 1.75 + 'LightweightThemeConsumer.jsm', 1.76 + ] 1.77 + 1.78 + 1.79 +if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': 1.80 + EXTRA_JS_MODULES += [ 1.81 + 'WindowsRegistry.jsm', 1.82 + ] 1.83 + 1.84 +DEFINES['MOZ_APP_NAME'] = CONFIG['MOZ_APP_NAME'] 1.85 +DEFINES['MOZ_BUILD_APP'] = CONFIG['MOZ_BUILD_APP'] 1.86 + 1.87 +if CONFIG['MOZ_TOOLKIT_SEARCH']: 1.88 + DEFINES['MOZ_TOOLKIT_SEARCH'] = True