gecko-dev/devtools/client/shared/moz.build
yulia 9611217838 Bug 1429421 - remove gcli code; r=jdescottes,julienw,ochameau
Remove remaining GCLI code

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

--HG--
extra : moz-landing-system : lando
2018-09-06 11:42:57 +00:00

65 lines
1.5 KiB
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/.
BROWSER_CHROME_MANIFESTS += ['test/browser.ini']
XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini']
TEST_HARNESS_FILES.xpcshell.devtools.client.shared.test += [
'test/shared-redux-head.js',
]
DIRS += [
'components',
'redux',
'source-map',
'vendor',
'webpack',
'widgets',
]
DevToolsModules(
'autocomplete-popup.js',
'browser-loader.js',
'css-angle.js',
'curl.js',
'demangle.js',
'devices.js',
'DOMHelpers.jsm',
'enum.js',
'file-saver.js',
'focus.js',
'getjson.js',
'inplace-editor.js',
'key-shortcuts.js',
'keycodes.js',
'link.js',
'natural-sort.js',
'node-attribute-parser.js',
'options-view.js',
'output-parser.js',
'poller.js',
'prefs.js',
'react-utils.js',
'scroll.js',
'source-utils.js',
'SplitView.jsm',
'stylesheet-utils.js',
'suggestion-picker.js',
'telemetry.js',
'TelemetryStopwatch.jsm',
'theme.js',
'undo.js',
'unicode-url.js',
'view-source.js',
'webgl-utils.js',
'zoom-keys.js',
)
with Files('**'):
BUG_COMPONENT = ('DevTools', 'General')
with Files('components/**'):
BUG_COMPONENT = ('DevTools', 'Shared Components')