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'), |
] |