Index: tools/verify_source_deps.py |
diff --git a/tools/verify_source_deps.py b/tools/verify_source_deps.py |
index e62ec8f306a41b0452b5fa2f0a99cff81dd5c346..a3fdb2ec7cf0be243532f48ff57731a6d9babf30 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', 'inspector.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'), |
] |
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', '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'), |
] |
def pathsplit(path): |