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

Unified Diff: tools/verify_source_deps.py

Issue 2358943002: [inspector] added inspector protocol test runner (Closed)
Patch Set: a 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..608b5f5b4e94e639bdbb0e3f001fbd8cc3a678b2 100755
--- a/tools/verify_source_deps.py
+++ b/tools/verify_source_deps.py
@@ -28,6 +28,7 @@ GYP_FILES = [
os.path.join(V8_BASE, 'src', 'third_party', 'vtune', 'v8vtune.gyp'),
os.path.join(V8_BASE, 'samples', 'samples.gyp'),
os.path.join(V8_BASE, 'test', 'cctest', 'cctest.gyp'),
+ os.path.join(V8_BASE, 'test', 'inspector-protocol', 'inspector-protocol.gyp'),
os.path.join(V8_BASE, 'test', 'fuzzer', 'fuzzer.gyp'),
os.path.join(V8_BASE, 'test', 'unittests', 'unittests.gyp'),
os.path.join(V8_BASE, 'testing', 'gmock.gyp'),
@@ -44,6 +45,7 @@ ALL_GYP_PREFIXES = [
'testing',
'tools',
os.path.join('test', 'cctest'),
+ os.path.join('test', 'inspector-protocol'),
os.path.join('test', 'common'),
os.path.join('test', 'fuzzer'),
os.path.join('test', 'unittests'),
@@ -59,6 +61,7 @@ GN_FILES = [
os.path.join(V8_BASE, 'build', 'secondary', 'testing', 'gtest', 'BUILD.gn'),
os.path.join(V8_BASE, 'src', 'inspector', 'BUILD.gn'),
os.path.join(V8_BASE, 'test', 'cctest', 'BUILD.gn'),
+ os.path.join(V8_BASE, 'test', 'inspector-protocol', 'BUILD.gn'),
os.path.join(V8_BASE, 'test', 'unittests', 'BUILD.gn'),
os.path.join(V8_BASE, 'tools', 'BUILD.gn'),
]
@@ -82,6 +85,7 @@ ALL_GN_PREFIXES = [
'src',
'testing',
os.path.join('test', 'cctest'),
+ os.path.join('test', 'inspector-protocol'),
os.path.join('test', 'unittests'),
]
« test/inspector-protocol/testcfg.py ('K') | « test/inspector-protocol/utils-extension.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698