2013-04-01 22:36:59 +04:00
|
|
|
# -*- Mode: python; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 40 -*-
|
2013-02-26 01:19:09 +04: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/.
|
|
|
|
|
2015-09-21 20:04:18 +03:00
|
|
|
include('../templates.mozbuild')
|
|
|
|
|
2014-07-29 03:57:59 +04:00
|
|
|
DIRS += [
|
2014-08-05 18:23:00 +04:00
|
|
|
'acorn',
|
|
|
|
'apps',
|
2013-05-22 03:39:13 +04:00
|
|
|
'client',
|
2014-08-05 18:23:00 +04:00
|
|
|
'discovery',
|
2016-05-17 15:59:21 +03:00
|
|
|
'fronts',
|
2013-05-09 18:15:22 +04:00
|
|
|
'gcli',
|
2015-09-04 03:29:40 +03:00
|
|
|
'heapsnapshot',
|
2016-01-12 20:52:12 +03:00
|
|
|
'inspector',
|
2014-07-14 17:25:22 +04:00
|
|
|
'jsbeautify',
|
2015-09-21 20:04:18 +03:00
|
|
|
'layout',
|
2015-11-05 00:35:53 +03:00
|
|
|
'locales',
|
2015-08-13 04:42:54 +03:00
|
|
|
'performance',
|
2014-05-01 15:28:00 +04:00
|
|
|
'pretty-fast',
|
2014-05-14 23:30:02 +04:00
|
|
|
'qrcode',
|
2014-08-05 18:23:00 +04:00
|
|
|
'security',
|
|
|
|
'sourcemap',
|
2015-09-18 00:28:42 +03:00
|
|
|
'shims',
|
2016-05-03 19:31:00 +03:00
|
|
|
'specs',
|
2015-07-16 09:12:50 +03:00
|
|
|
'touch',
|
2014-08-05 18:23:00 +04:00
|
|
|
'transport',
|
2015-10-07 23:40:24 +03:00
|
|
|
'webconsole',
|
|
|
|
'worker',
|
2013-02-26 01:19:09 +04:00
|
|
|
]
|
2014-02-07 01:00:20 +04:00
|
|
|
|
2015-10-07 23:32:08 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += ['tests/browser/browser.ini']
|
2014-02-07 01:00:20 +04:00
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['tests/mochitest/chrome.ini']
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['tests/unit/xpcshell.ini']
|
2014-07-29 01:23:44 +04:00
|
|
|
|
2015-10-07 01:42:00 +03:00
|
|
|
JAR_MANIFESTS += ['jar.mn']
|
|
|
|
|
2015-09-21 20:04:18 +03:00
|
|
|
DevToolsModules(
|
2015-10-07 23:32:08 +03:00
|
|
|
'async-storage.js',
|
2014-07-29 01:23:44 +04:00
|
|
|
'async-utils.js',
|
2016-05-12 13:07:56 +03:00
|
|
|
'builtin-modules.js',
|
2014-07-29 01:23:44 +04:00
|
|
|
'content-observer.js',
|
2016-04-29 20:21:22 +03:00
|
|
|
'css-lexer.js',
|
2016-05-23 15:03:12 +03:00
|
|
|
'css-parsing-utils.js',
|
2016-06-02 14:07:00 +03:00
|
|
|
'css-properties-db.js',
|
2016-05-27 22:08:48 +03:00
|
|
|
'defer.js',
|
2014-07-29 01:23:44 +04:00
|
|
|
'deprecated-sync-thenables.js',
|
|
|
|
'DevToolsUtils.js',
|
2016-06-03 16:47:58 +03:00
|
|
|
'dom-node-constants.js',
|
2016-07-11 21:28:00 +03:00
|
|
|
'dom-node-filter-constants.js',
|
2014-07-29 01:23:44 +04:00
|
|
|
'event-emitter.js',
|
2014-08-28 15:46:25 +04:00
|
|
|
'event-parsers.js',
|
2015-10-07 23:26:58 +03:00
|
|
|
'indentation.js',
|
2015-09-21 20:04:18 +03:00
|
|
|
'Loader.jsm',
|
2015-10-21 17:09:39 +03:00
|
|
|
'Parser.jsm',
|
2014-12-09 23:00:00 +03:00
|
|
|
'path.js',
|
2016-05-06 10:19:00 +03:00
|
|
|
'protocol.js',
|
2015-10-07 23:18:14 +03:00
|
|
|
'system.js',
|
2016-05-17 22:07:55 +03:00
|
|
|
'task.js',
|
2015-12-30 20:37:01 +03:00
|
|
|
'ThreadSafeDevToolsUtils.js',
|
2015-09-21 20:04:18 +03:00
|
|
|
)
|