| Index: tools/verify_source_deps.py
|
| diff --git a/tools/verify_source_deps.py b/tools/verify_source_deps.py
|
| index a3fdb2ec7cf0be243532f48ff57731a6d9babf30..e62ec8f306a41b0452b5fa2f0a99cff81dd5c346 100755
|
| --- a/tools/verify_source_deps.py
|
| +++ b/tools/verify_source_deps.py
|
| @@ -30,7 +30,6 @@ 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'),
|
| @@ -48,7 +47,6 @@ 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 = [
|
| @@ -62,7 +60,6 @@ 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'),
|
| ]
|
|
|
| @@ -86,7 +83,6 @@ ALL_GN_PREFIXES = [
|
| 'testing',
|
| os.path.join('test', 'cctest'),
|
| os.path.join('test', 'unittests'),
|
| - os.path.join('test', 'inspector'),
|
| ]
|
|
|
| def pathsplit(path):
|
|
|