2013-02-26 00:47:18 +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
|
|
|
DIRS += [
|
|
|
|
'content',
|
2016-08-05 16:27:41 +03:00
|
|
|
'new'
|
2015-08-28 14:27:00 +03:00
|
|
|
]
|
|
|
|
|
2015-09-21 20:04:18 +03:00
|
|
|
DevToolsModules(
|
|
|
|
'debugger-commands.js',
|
|
|
|
'panel.js'
|
|
|
|
)
|
2015-08-28 14:27:00 +03:00
|
|
|
|
2016-09-01 00:21:24 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += [
|
|
|
|
'new/test/mochitest/browser.ini',
|
2016-09-01 22:06:54 +03:00
|
|
|
'test/mochitest/browser.ini',
|
|
|
|
'test/mochitest/browser2.ini'
|
2016-09-01 00:21:24 +03:00
|
|
|
]
|
2017-01-13 16:40:35 +03:00
|
|
|
|
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('Firefox', 'Developer Tools: Debugger')
|