gecko-dev/devtools/client/responsive/moz.build
Gabriel Luong dcd3f3a19f Bug 1580312 - Refactor ResponsiveUI into its own module. r=mtigley
Differential Revision: https://phabricator.services.mozilla.com/D45443

--HG--
rename : devtools/client/responsive/manager.js => devtools/client/responsive/ui.js
extra : moz-landing-system : lando
2019-09-10 21:36:07 +00:00

32 lines
738 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',
'browser',
'components',
'images',
'reducers',
'utils',
]
DevToolsModules(
'constants.js',
'index.css',
'index.js',
'manager.js',
'reducers.js',
'store.js',
'types.js',
'ui.js',
)
XPCSHELL_TESTS_MANIFESTS += ['test/unit/xpcshell.ini']
BROWSER_CHROME_MANIFESTS += ['test/browser/browser.ini']
with Files('**'):
BUG_COMPONENT = ('DevTools', 'Responsive Design Mode')