2019-10-09 03:37:55 +03:00
|
|
|
# -*- Mode: python; 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/.
|
|
|
|
|
|
|
|
DIRS += [
|
2020-10-24 03:36:18 +03:00
|
|
|
'actions',
|
|
|
|
'components',
|
|
|
|
'reducers',
|
|
|
|
'utils',
|
2019-10-09 03:37:55 +03:00
|
|
|
]
|
|
|
|
|
2020-10-24 03:36:18 +03:00
|
|
|
BROWSER_CHROME_MANIFESTS += ['test/browser/browser.ini']
|
|
|
|
XPCSHELL_TESTS_MANIFESTS += ['test/xpcshell/xpcshell.ini']
|
2019-10-09 03:35:40 +03:00
|
|
|
|
2019-10-09 03:37:55 +03:00
|
|
|
DevToolsModules(
|
2020-10-24 03:36:18 +03:00
|
|
|
'CompatibilityView.js',
|
|
|
|
'types.js',
|
2019-10-09 03:37:55 +03:00
|
|
|
)
|
|
|
|
|
2020-10-24 03:36:18 +03:00
|
|
|
with Files('**'):
|
|
|
|
BUG_COMPONENT = ('DevTools', 'Inspector: Compatibility')
|