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/.
|
|
|
|
|
2015-09-21 17:04:18 +00:00
|
|
|
DIRS += [
|
2015-09-26 03:09:58 +00:00
|
|
|
'actions',
|
2015-09-21 17:04:18 +00:00
|
|
|
'modules',
|
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-09-26 03:09:58 +00:00
|
|
|
'constants.js',
|
|
|
|
'controller.js',
|
|
|
|
'initializer.js',
|
2015-09-21 17:04:18 +00:00
|
|
|
'panel.js',
|
2015-09-26 03:09:58 +00:00
|
|
|
'reducers.js',
|
|
|
|
'store.js',
|
2015-09-21 17:04:18 +00:00
|
|
|
)
|
|
|
|
|
2015-09-03 20:19:51 +00:00
|
|
|
MOCHITEST_CHROME_MANIFESTS += ['test/mochitest/chrome.ini']
|
2015-09-26 03:09:58 +00:00
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini']
|