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

Side by Side Diff: tools/presubmit.py

Issue 437993003: Move a bunch of GC related files to heap/ subdirectory (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: make presubmit happy Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « tools/gyp/v8.gyp ('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 # 2 #
3 # Copyright 2012 the V8 project authors. All rights reserved. 3 # Copyright 2012 the V8 project authors. All rights reserved.
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 runtime/arrays 73 runtime/arrays
74 runtime/casting 74 runtime/casting
75 runtime/deprecated_fn 75 runtime/deprecated_fn
76 runtime/explicit 76 runtime/explicit
77 runtime/int 77 runtime/int
78 runtime/memset 78 runtime/memset
79 runtime/mutex 79 runtime/mutex
80 runtime/nonconf 80 runtime/nonconf
81 runtime/printf 81 runtime/printf
82 runtime/printf_format 82 runtime/printf_format
83 runtime/references
84 runtime/rtti 83 runtime/rtti
85 runtime/sizeof 84 runtime/sizeof
86 runtime/string 85 runtime/string
87 runtime/virtual 86 runtime/virtual
88 runtime/vlog 87 runtime/vlog
89 whitespace/blank_line 88 whitespace/blank_line
90 whitespace/braces 89 whitespace/braces
91 whitespace/comma 90 whitespace/comma
92 whitespace/comments 91 whitespace/comments
93 whitespace/ending_newline 92 whitespace/ending_newline
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 success = SourceProcessor().Run(workspace) and success 443 success = SourceProcessor().Run(workspace) and success
445 success = CheckGeneratedRuntimeTests(workspace) and success 444 success = CheckGeneratedRuntimeTests(workspace) and success
446 if success: 445 if success:
447 return 0 446 return 0
448 else: 447 else:
449 return 1 448 return 1
450 449
451 450
452 if __name__ == '__main__': 451 if __name__ == '__main__':
453 sys.exit(Main()) 452 sys.exit(Main())
OLDNEW
« no previous file with comments | « tools/gyp/v8.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698