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

Side by Side Diff: tools/verify_source_deps.py

Issue 2809653003: Introduce mkgrokdump to update tools/v8heapconst.py. (Closed)
Patch Set: Created 3 years, 8 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 unified diff | Download patch
« tools/run-tests.py ('K') | « tools/v8heapconst.py.tmpl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2015 the V8 project authors. All rights reserved. 2 # Copyright 2015 the V8 project authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 """ 6 """
7 Script to print potentially missing source dependencies based on the actual 7 Script to print potentially missing source dependencies based on the actual
8 .h and .cc files in the source tree and which files are included in the gyp 8 .h and .cc files in the source tree and which files are included in the gyp
9 and gn files. The latter inclusion is overapproximated. 9 and gn files. The latter inclusion is overapproximated.
10 10
(...skipping 15 matching lines...) Expand all
26 os.path.join(V8_BASE, 'src', 'v8.gyp'), 26 os.path.join(V8_BASE, 'src', 'v8.gyp'),
27 os.path.join(V8_BASE, 'src', 'inspector', 'inspector.gypi'), 27 os.path.join(V8_BASE, 'src', 'inspector', 'inspector.gypi'),
28 os.path.join(V8_BASE, 'src', 'third_party', 'vtune', 'v8vtune.gyp'), 28 os.path.join(V8_BASE, 'src', 'third_party', 'vtune', 'v8vtune.gyp'),
29 os.path.join(V8_BASE, 'samples', 'samples.gyp'), 29 os.path.join(V8_BASE, 'samples', 'samples.gyp'),
30 os.path.join(V8_BASE, 'test', 'cctest', 'cctest.gyp'), 30 os.path.join(V8_BASE, 'test', 'cctest', 'cctest.gyp'),
31 os.path.join(V8_BASE, 'test', 'fuzzer', 'fuzzer.gyp'), 31 os.path.join(V8_BASE, 'test', 'fuzzer', 'fuzzer.gyp'),
32 os.path.join(V8_BASE, 'test', 'unittests', 'unittests.gyp'), 32 os.path.join(V8_BASE, 'test', 'unittests', 'unittests.gyp'),
33 os.path.join(V8_BASE, 'test', 'inspector', 'inspector.gyp'), 33 os.path.join(V8_BASE, 'test', 'inspector', 'inspector.gyp'),
34 os.path.join(V8_BASE, 'testing', 'gmock.gyp'), 34 os.path.join(V8_BASE, 'testing', 'gmock.gyp'),
35 os.path.join(V8_BASE, 'testing', 'gtest.gyp'), 35 os.path.join(V8_BASE, 'testing', 'gtest.gyp'),
36 os.path.join(V8_BASE, 'tools', 'mkgrokdump.gyp'),
36 os.path.join(V8_BASE, 'tools', 'parser-shell.gyp'), 37 os.path.join(V8_BASE, 'tools', 'parser-shell.gyp'),
37 ] 38 ]
38 39
39 ALL_GYP_PREFIXES = [ 40 ALL_GYP_PREFIXES = [
40 '..', 41 '..',
41 'common', 42 'common',
42 os.path.join('src', 'third_party', 'vtune'), 43 os.path.join('src', 'third_party', 'vtune'),
43 'src', 44 'src',
44 'samples', 45 'samples',
45 'testing', 46 'testing',
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
173 for i in missing_gyp_files(): 174 for i in missing_gyp_files():
174 print i 175 print i
175 176
176 print "\n----------- Files not in gn: -------------" 177 print "\n----------- Files not in gn: -------------"
177 for i in missing_gn_files(): 178 for i in missing_gn_files():
178 print i 179 print i
179 return 0 180 return 0
180 181
181 if '__main__' == __name__: 182 if '__main__' == __name__:
182 sys.exit(main()) 183 sys.exit(main())
OLDNEW
« tools/run-tests.py ('K') | « tools/v8heapconst.py.tmpl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698