Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(17)

Unified Diff: tools/verify_source_deps.py

Issue 2361623006: [inspector] added inspector test runner [part 1] (Closed)
Patch Set: use String16 in test-runner Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: tools/verify_source_deps.py
diff --git a/tools/verify_source_deps.py b/tools/verify_source_deps.py
index e62ec8f306a41b0452b5fa2f0a99cff81dd5c346..f4ce0b5a030a16b54579df811ee3697f0f72acef 100755
--- a/tools/verify_source_deps.py
+++ b/tools/verify_source_deps.py
@@ -30,6 +30,7 @@ GYP_FILES = [
os.path.join(V8_BASE, 'test', 'cctest', 'cctest.gyp'),
os.path.join(V8_BASE, 'test', 'fuzzer', 'fuzzer.gyp'),
os.path.join(V8_BASE, 'test', 'unittests', 'unittests.gyp'),
+ os.path.join(V8_BASE, 'test', 'inspector-protocol', 'inspector-protocol.gyp'),
os.path.join(V8_BASE, 'testing', 'gmock.gyp'),
os.path.join(V8_BASE, 'testing', 'gtest.gyp'),
os.path.join(V8_BASE, 'tools', 'parser-shell.gyp'),
@@ -47,6 +48,7 @@ ALL_GYP_PREFIXES = [
os.path.join('test', 'common'),
os.path.join('test', 'fuzzer'),
os.path.join('test', 'unittests'),
+ os.path.join('test', 'inspector-protocol'),
]
GYP_UNSUPPORTED_FEATURES = [
@@ -60,6 +62,7 @@ GN_FILES = [
os.path.join(V8_BASE, 'src', 'inspector', 'BUILD.gn'),
os.path.join(V8_BASE, 'test', 'cctest', 'BUILD.gn'),
os.path.join(V8_BASE, 'test', 'unittests', 'BUILD.gn'),
+ os.path.join(V8_BASE, 'test', 'inspector-protocol', 'BUILD.gn'),
os.path.join(V8_BASE, 'tools', 'BUILD.gn'),
]
@@ -83,6 +86,7 @@ ALL_GN_PREFIXES = [
'testing',
os.path.join('test', 'cctest'),
os.path.join('test', 'unittests'),
+ os.path.join('test', 'inspector-protocol'),
]
def pathsplit(path):
« test/inspector-protocol/inspector-protocol.gyp ('K') | « test/inspector-protocol/task-runner.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698