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 2760233005: [snapshot] Move builtins generation into mksnapshot (Closed)
Patch Set: fix GYP builds 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
« no previous file with comments | « test/unittests/BUILD.gn ('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 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 'tools', 46 'tools',
47 os.path.join('test', 'cctest'), 47 os.path.join('test', 'cctest'),
48 os.path.join('test', 'common'), 48 os.path.join('test', 'common'),
49 os.path.join('test', 'fuzzer'), 49 os.path.join('test', 'fuzzer'),
50 os.path.join('test', 'unittests'), 50 os.path.join('test', 'unittests'),
51 os.path.join('test', 'inspector'), 51 os.path.join('test', 'inspector'),
52 ] 52 ]
53 53
54 GYP_UNSUPPORTED_FEATURES = [ 54 GYP_UNSUPPORTED_FEATURES = [
55 'gcmole', 55 'gcmole',
56 'setup-isolate-deserialize.cc',
56 ] 57 ]
57 58
58 GN_FILES = [ 59 GN_FILES = [
59 os.path.join(V8_BASE, 'BUILD.gn'), 60 os.path.join(V8_BASE, 'BUILD.gn'),
60 os.path.join(V8_BASE, 'build', 'secondary', 'testing', 'gmock', 'BUILD.gn'), 61 os.path.join(V8_BASE, 'build', 'secondary', 'testing', 'gmock', 'BUILD.gn'),
61 os.path.join(V8_BASE, 'build', 'secondary', 'testing', 'gtest', 'BUILD.gn'), 62 os.path.join(V8_BASE, 'build', 'secondary', 'testing', 'gtest', 'BUILD.gn'),
62 os.path.join(V8_BASE, 'src', 'inspector', 'BUILD.gn'), 63 os.path.join(V8_BASE, 'src', 'inspector', 'BUILD.gn'),
63 os.path.join(V8_BASE, 'test', 'cctest', 'BUILD.gn'), 64 os.path.join(V8_BASE, 'test', 'cctest', 'BUILD.gn'),
64 os.path.join(V8_BASE, 'test', 'unittests', 'BUILD.gn'), 65 os.path.join(V8_BASE, 'test', 'unittests', 'BUILD.gn'),
65 os.path.join(V8_BASE, 'test', 'inspector', 'BUILD.gn'), 66 os.path.join(V8_BASE, 'test', 'inspector', 'BUILD.gn'),
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
172 for i in missing_gyp_files(): 173 for i in missing_gyp_files():
173 print i 174 print i
174 175
175 print "\n----------- Files not in gn: -------------" 176 print "\n----------- Files not in gn: -------------"
176 for i in missing_gn_files(): 177 for i in missing_gn_files():
177 print i 178 print i
178 return 0 179 return 0
179 180
180 if '__main__' == __name__: 181 if '__main__' == __name__:
181 sys.exit(main()) 182 sys.exit(main())
OLDNEW
« no previous file with comments | « test/unittests/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698