Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
michael@0 | 1 | # -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*- |
michael@0 | 2 | # vim: set filetype=python: |
michael@0 | 3 | # This Source Code Form is subject to the terms of the Mozilla Public |
michael@0 | 4 | # License, v. 2.0. If a copy of the MPL was not distributed with this |
michael@0 | 5 | # file, You can obtain one at http://mozilla.org/MPL/2.0/. |
michael@0 | 6 | |
michael@0 | 7 | XPCSHELL_TESTS_MANIFESTS += ['tests/xpcshell/xpcshell.ini'] |
michael@0 | 8 | BROWSER_CHROME_MANIFESTS += ['tests/browser/browser.ini'] |
michael@0 | 9 | MOCHITEST_MANIFESTS += ['tests/mochitest/mochitest.ini'] |
michael@0 | 10 | MOCHITEST_CHROME_MANIFESTS += ['tests/chrome/chrome.ini'] |
michael@0 | 11 | |
michael@0 | 12 | EXTRA_JS_MODULES += [ |
michael@0 | 13 | 'AsyncShutdown.jsm', |
michael@0 | 14 | 'BinarySearch.jsm', |
michael@0 | 15 | 'BrowserUtils.jsm', |
michael@0 | 16 | 'CharsetMenu.jsm', |
michael@0 | 17 | 'debug.js', |
michael@0 | 18 | 'DeferredTask.jsm', |
michael@0 | 19 | 'Deprecated.jsm', |
michael@0 | 20 | 'Dict.jsm', |
michael@0 | 21 | 'DirectoryLinksProvider.jsm', |
michael@0 | 22 | 'FileUtils.jsm', |
michael@0 | 23 | 'Finder.jsm', |
michael@0 | 24 | 'Geometry.jsm', |
michael@0 | 25 | 'Http.jsm', |
michael@0 | 26 | 'InlineSpellChecker.jsm', |
michael@0 | 27 | 'LoadContextInfo.jsm', |
michael@0 | 28 | 'Log.jsm', |
michael@0 | 29 | 'NewTabUtils.jsm', |
michael@0 | 30 | 'PageMenu.jsm', |
michael@0 | 31 | 'PermissionsUtils.jsm', |
michael@0 | 32 | 'PopupNotifications.jsm', |
michael@0 | 33 | 'Preferences.jsm', |
michael@0 | 34 | 'PrivateBrowsingUtils.jsm', |
michael@0 | 35 | 'Promise-backend.js', |
michael@0 | 36 | 'Promise.jsm', |
michael@0 | 37 | 'PropertyListUtils.jsm', |
michael@0 | 38 | 'RemoteAddonsChild.jsm', |
michael@0 | 39 | 'RemoteAddonsParent.jsm', |
michael@0 | 40 | 'RemoteController.jsm', |
michael@0 | 41 | 'RemoteFinder.jsm', |
michael@0 | 42 | 'RemoteSecurityUI.jsm', |
michael@0 | 43 | 'RemoteWebNavigation.jsm', |
michael@0 | 44 | 'RemoteWebProgress.jsm', |
michael@0 | 45 | 'SelectContentHelper.jsm', |
michael@0 | 46 | 'SelectParentHelper.jsm', |
michael@0 | 47 | 'sessionstore/FormData.jsm', |
michael@0 | 48 | 'sessionstore/ScrollPosition.jsm', |
michael@0 | 49 | 'sessionstore/XPathGenerator.jsm', |
michael@0 | 50 | 'ShortcutUtils.jsm', |
michael@0 | 51 | 'Sntp.jsm', |
michael@0 | 52 | 'SpatialNavigation.jsm', |
michael@0 | 53 | 'Sqlite.jsm', |
michael@0 | 54 | 'Task.jsm', |
michael@0 | 55 | 'TelemetryTimestamps.jsm', |
michael@0 | 56 | 'Timer.jsm', |
michael@0 | 57 | 'ZipUtils.jsm', |
michael@0 | 58 | ] |
michael@0 | 59 | |
michael@0 | 60 | EXTRA_PP_JS_MODULES += [ |
michael@0 | 61 | 'CertUtils.jsm', |
michael@0 | 62 | 'ResetProfile.jsm', |
michael@0 | 63 | 'Services.jsm', |
michael@0 | 64 | 'Troubleshoot.jsm', |
michael@0 | 65 | 'UpdateChannel.jsm', |
michael@0 | 66 | 'WindowDraggingUtils.jsm', |
michael@0 | 67 | 'WindowsPrefSync.jsm', |
michael@0 | 68 | ] |
michael@0 | 69 | |
michael@0 | 70 | if 'Android' != CONFIG['OS_TARGET']: |
michael@0 | 71 | EXTRA_PP_JS_MODULES += [ |
michael@0 | 72 | 'LightweightThemeConsumer.jsm', |
michael@0 | 73 | ] |
michael@0 | 74 | |
michael@0 | 75 | |
michael@0 | 76 | if CONFIG['MOZ_WIDGET_TOOLKIT'] == 'windows': |
michael@0 | 77 | EXTRA_JS_MODULES += [ |
michael@0 | 78 | 'WindowsRegistry.jsm', |
michael@0 | 79 | ] |
michael@0 | 80 | |
michael@0 | 81 | DEFINES['MOZ_APP_NAME'] = CONFIG['MOZ_APP_NAME'] |
michael@0 | 82 | DEFINES['MOZ_BUILD_APP'] = CONFIG['MOZ_BUILD_APP'] |
michael@0 | 83 | |
michael@0 | 84 | if CONFIG['MOZ_TOOLKIT_SEARCH']: |
michael@0 | 85 | DEFINES['MOZ_TOOLKIT_SEARCH'] = True |