Bug 1669956 - [devtools] Add moz.build in devtools/client/shared/components/reps. r=jdescottes.

Differential Revision: https://phabricator.services.mozilla.com/D93352
This commit is contained in:
Nicolas Chevobbe 2020-10-14 11:24:14 +00:00
Родитель c14ad4e144
Коммит af4bb5e2f6
9 изменённых файлов: 70 добавлений и 2 удалений

Просмотреть файл

@ -4,6 +4,12 @@
# 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 += [
'object-inspector',
'reps',
'shared',
]
DevToolsModules(
'index.js',
)

Просмотреть файл

@ -0,0 +1,10 @@
# -*- 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/.
DevToolsModules(
'ObjectInspector.js',
'ObjectInspectorItem.js',
)

Просмотреть файл

@ -4,6 +4,13 @@
# 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 += [
'components',
'utils',
]
DevToolsModules(
'actions.js',
'index.js',
'reducer.js',
)

Просмотреть файл

@ -0,0 +1,13 @@
# -*- 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/.
DevToolsModules(
'client.js',
'index.js',
'load-properties.js',
'node.js',
'selection.js',
)

Просмотреть файл

@ -31,6 +31,7 @@ DevToolsModules(
'object-with-url.js',
'object.js',
'promise.js',
'prop-rep.js',
'regexp.js',
'rep-utils.js',
'rep.js',

Просмотреть файл

@ -2,8 +2,6 @@
* 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/>. */
require("./reps.css");
// Load all existing rep templates
const Undefined = require("./undefined");
const Null = require("./null");

Просмотреть файл

@ -0,0 +1,14 @@
# -*- 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 += [
'redux',
]
DevToolsModules(
'dom-node-constants.js',
'grip-length-bubble.js',
)

Просмотреть файл

@ -0,0 +1,10 @@
# -*- 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/.
DevToolsModules(
'thunk.js',
'waitUntilService.js',
)

Просмотреть файл

@ -0,0 +1,9 @@
# -*- 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 += [
'middleware',
]