gecko-dev/devtools/client/webconsole/moz.build
Nicolas Chevobbe e63b4ee826 Bug 1570320 - Rename hudservice into browser-console-manager. r=ochameau.
The file only manages the browser console, so we're
making its name reflect what it does.

Differential Revision: https://phabricator.services.mozilla.com/D40441

--HG--
rename : devtools/client/webconsole/hudservice.js => devtools/client/webconsole/browser-console-manager.js
extra : moz-landing-system : lando
2019-08-05 11:40:58 +00:00

32 lines
764 B
Python

# -*- 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 += [
'actions',
'components',
'enhancers',
'middleware',
'reducers',
'selectors',
'test',
'utils',
]
DevToolsModules(
'browser-console-manager.js',
'browser-console.js',
'constants.js',
'panel.js',
'store.js',
'types.js',
'utils.js',
'webconsole-connection-proxy.js',
'webconsole-ui.js',
'webconsole-wrapper.js',
'webconsole.js',
)
with Files('**'):
BUG_COMPONENT = ('DevTools', 'Console')