forked from mozilla/gecko-dev
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bug 1363533 - Move nsIJSInspector from devtools/server/ to devtools/p…
…latform/. r=gps,jryans MozReview-Commit-ID: 3ry7pRiqNWv --HG-- rename : devtools/server/moz.build => devtools/platform/moz.build rename : devtools/server/nsIJSInspector.idl => devtools/platform/nsIJSInspector.idl rename : devtools/server/nsJSInspector.cpp => devtools/platform/nsJSInspector.cpp rename : devtools/server/nsJSInspector.h => devtools/platform/nsJSInspector.h rename : devtools/server/tests/unit/test_nsjsinspector.js => devtools/platform/tests/unit/test_nsjsinspector.js extra : rebase_source : 1df23f9247d9202fc7022ae73f8bf4bcf262410b
- Loading branch information
Showing
11 changed files
with
51 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# -*- 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/. | ||
|
||
XPCSHELL_TESTS_MANIFESTS += ['tests/unit/xpcshell.ini'] | ||
|
||
XPIDL_SOURCES += [ | ||
'nsIJSInspector.idl', | ||
] | ||
|
||
XPIDL_MODULE = 'jsinspector' | ||
|
||
SOURCES += [ | ||
'nsJSInspector.cpp', | ||
] | ||
|
||
FINAL_LIBRARY = 'xul' |
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Parent config file for all devtools xpcshell files. | ||
module.exports = { | ||
"extends": [ | ||
"plugin:mozilla/xpcshell-test" | ||
], | ||
"rules": { | ||
// Allow non-camelcase so that run_test doesn't produce a warning. | ||
"camelcase": "off", | ||
// Allow using undefined variables so that tests can refer to functions | ||
// and variables defined in head.js files, without having to maintain a | ||
// list of globals in each .eslintrc file. | ||
// Note that bug 1168340 will eventually help auto-registering globals | ||
// from head.js files. | ||
"no-undef": "off", | ||
"block-scoped-var": "off", | ||
// Tests can always import anything. | ||
"mozilla/reject-some-requires": "off", | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[DEFAULT] | ||
tags = devtools | ||
firefox-appdir = browser | ||
skip-if = toolkit == 'android' | ||
|
||
[test_nsjsinspector.js] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters