mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-05-26 14:30:27 +00:00
7529dc68e8
- import VMX Blur from TenFourFox and adapt moz.build with HAVE_ALTIVEC (f23006226) - Bug 1176083. Remove the now-dead code for the XPCOM version of setTimeout/setInterval. r=smaug (af84a61a6) - Bug 1148593 - Pass JSContext to CallbackObject constructor. r=bz (548cda0cc) - Bug 1164564 - Clean up the worker loader;r=jlong (c22a9241c) - Bug 1164564 - Refactor Promise-backend.js so it can be required as a CommonJS module;r=jlong (6ced4a7f2) - Bug 1084525 - Part 4: Add listPromises method to PromisesActor r=fitzgen (132c6b062) - Bug 1084525 - Part 5: Add onNewPromise event handler to PromisesActor r=fitzgen (07098d58c) - Bug 1084525 - Part 6: Add onPromiseSettled event handler to PromisesActor r=fitzgen (11d0c7430) - Bug 1164483 - move worker helpers from frontend of devtools to backend r=jsantell (d5a0d16af) - Bug 1164632 - use new worker helpers in debugger for pretty-printing r=jsantell (de356582a) - do not run a test program to see if -maltivec is supported, since GCC always accepts it, even if an incompatible processor is selected. Offer explicit enable-altivec option and also set CXXFLAGS (c78bc8e43) - extend removing of optimizations to all newer GCC versions, since it is a code issue, not compiler one (29639f4d5)
84 lines
1.8 KiB
INI
84 lines
1.8 KiB
INI
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
|
# 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/.
|
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['tests/mochitest/chrome.ini']
|
|
XPCSHELL_TESTS_MANIFESTS += ['tests/unit/xpcshell.ini']
|
|
|
|
DIRS += [
|
|
'acorn',
|
|
'apps',
|
|
'client',
|
|
'discovery',
|
|
'gcli',
|
|
'jsbeautify',
|
|
'pretty-fast',
|
|
'qrcode',
|
|
'security',
|
|
'server',
|
|
'sourcemap',
|
|
'shared',
|
|
'styleinspector',
|
|
'tern',
|
|
'transport',
|
|
'webconsole'
|
|
]
|
|
|
|
if CONFIG['MOZ_DEVTOOLS']:
|
|
DIRS += [
|
|
'animationinspector',
|
|
'app-manager',
|
|
'canvasdebugger',
|
|
'commandline',
|
|
'debugger',
|
|
'eyedropper',
|
|
'fontinspector',
|
|
'framework',
|
|
'inspector',
|
|
'layoutview',
|
|
'markupview',
|
|
'netmonitor',
|
|
'performance',
|
|
'projecteditor',
|
|
'responsivedesign',
|
|
'scratchpad',
|
|
'shadereditor',
|
|
'sourceeditor',
|
|
'storage',
|
|
'styleeditor',
|
|
'tilt',
|
|
'webaudioeditor',
|
|
'webide',
|
|
]
|
|
|
|
EXTRA_JS_MODULES.devtools += [
|
|
'async-utils.js',
|
|
'content-observer.js',
|
|
'css-color.js',
|
|
'deprecated-sync-thenables.js',
|
|
'DevToolsUtils.js',
|
|
'event-emitter.js',
|
|
'event-parsers.js',
|
|
'output-parser.js',
|
|
'path.js',
|
|
'touch-events.js',
|
|
'worker-loader.js',
|
|
]
|
|
|
|
EXTRA_JS_MODULES.devtools += [
|
|
'Console.jsm',
|
|
'DevToolsUtils.jsm',
|
|
'LayoutHelpers.jsm',
|
|
'Loader.jsm',
|
|
'Require.jsm',
|
|
]
|
|
|
|
EXTRA_JS_MODULES.devtools.server.actors += [
|
|
'server/actors/highlighter.css'
|
|
]
|
|
|
|
JAR_MANIFESTS += ['jar.mn']
|
|
|