2015-09-02 21:46:26 +00: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/.
|
|
|
|
|
2016-01-13 20:27:30 +00:00
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Firefox', 'Developer Tools: Memory')
|
|
|
|
|
2015-09-21 17:04:18 +00:00
|
|
|
DIRS += [
|
2015-09-26 03:09:58 +00:00
|
|
|
'actions',
|
2015-10-10 15:09:28 +00:00
|
|
|
'components',
|
2015-09-26 03:09:58 +00:00
|
|
|
'reducers',
|
2015-09-02 21:46:26 +00:00
|
|
|
]
|
|
|
|
|
2015-09-21 17:04:18 +00:00
|
|
|
DevToolsModules(
|
2015-10-10 15:09:28 +00:00
|
|
|
'app.js',
|
2015-09-26 03:09:58 +00:00
|
|
|
'constants.js',
|
|
|
|
'initializer.js',
|
2015-10-17 02:15:54 +00:00
|
|
|
'models.js',
|
2015-09-21 17:04:18 +00:00
|
|
|
'panel.js',
|
2015-09-26 03:09:58 +00:00
|
|
|
'reducers.js',
|
|
|
|
'store.js',
|
2015-10-15 06:13:17 +00:00
|
|
|
'utils.js',
|
2015-09-21 17:04:18 +00:00
|
|
|
)
|
|
|
|
|
2015-10-10 15:09:28 +00:00
|
|
|
BROWSER_CHROME_MANIFESTS += ['test/browser/browser.ini']
|
2015-09-26 03:09:58 +00:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini']
|