Chromium Code Reviews

Side by Side Diff: build/get_landmines.py

Issue 1190933002: Reland Update V8 DEPS. (Closed) Base URL: https://chromium.googlesource.com/v8/v8@master
Patch Set: Landmine Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff |
« no previous file with comments | « DEPS ('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 2014 the V8 project authors. All rights reserved. 2 # Copyright 2014 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 This file emits the list of reasons why a particular build needs to be clobbered 7 This file emits the list of reasons why a particular build needs to be clobbered
8 (or a list of 'landmines'). 8 (or a list of 'landmines').
9 """ 9 """
10 10
11 import sys 11 import sys
12 12
13 13
14 def main(): 14 def main():
15 """ 15 """
16 ALL LANDMINES ARE EMITTED FROM HERE. 16 ALL LANDMINES ARE EMITTED FROM HERE.
17 """ 17 """
18 print 'Need to clobber after ICU52 roll.' 18 print 'Need to clobber after ICU52 roll.'
19 print 'Landmines test.' 19 print 'Landmines test.'
20 print 'Activating MSVS 2013.' 20 print 'Activating MSVS 2013.'
21 print 'Revert activation of MSVS 2013.' 21 print 'Revert activation of MSVS 2013.'
22 print 'Activating MSVS 2013 again.' 22 print 'Activating MSVS 2013 again.'
23 print 'Clobber after ICU roll.' 23 print 'Clobber after ICU roll.'
24 print 'Moar clobbering...' 24 print 'Moar clobbering...'
25 print 'Clobber after gyp roll.'
25 return 0 26 return 0
26 27
27 28
28 if __name__ == '__main__': 29 if __name__ == '__main__':
29 sys.exit(main()) 30 sys.exit(main())
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine