fune/devtools/client/shared/components/moz.build
Nicolas Chevobbe e954c570c9 Bug 1757552 - [devtools] Generate actor-less reps stubs.r=bomsy.
This patch is introducing the machinery to automatically generate/check some
stubs used by Reps.
We're focusing on stubs that shouldn't be represented by a front as it's easier
to deal with; we should then have follow up and incremental patches for each
stubs.

Some data can't be retrieved after being serialized/deserialized (`-0`, unsafe int, …),
and in such case the associated test was modified to directly pass the object.

Differential Revision: https://phabricator.services.mozilla.com/D139933
2022-03-03 16:16:50 +00:00

40 lines
939 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 += [
"object-inspector",
"menu",
"reps",
"splitter",
"tabs",
"throttling",
"tree",
]
DevToolsModules(
"Accordion.js",
"AppErrorBoundary.js",
"Frame.js",
"HSplitBox.js",
"List.js",
"MdnLink.js",
"NotificationBox.js",
"SearchBox.js",
"SearchBoxAutocompletePopup.js",
"Sidebar.js",
"SidebarToggle.js",
"SmartTrace.js",
"StackTrace.js",
"Tree.js",
"VirtualizedTree.js",
"VisibilityHandler.js",
)
MOCHITEST_CHROME_MANIFESTS += ["test/chrome/chrome.ini"]
BROWSER_CHROME_MANIFESTS += [
"test/browser/browser.ini",
"test/node/stubs/reps/stubs.ini",
]