OLD | NEW |
---|---|
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2013 The Chromium Authors. All rights reserved. | 2 # Copyright 2013 The Chromium 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 |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
47 print "Switched win x64 trybots from VS2010 to VS2012." | 47 print "Switched win x64 trybots from VS2010 to VS2012." |
48 if (platform() == 'win' and builder() == 'ninja' and | 48 if (platform() == 'win' and builder() == 'ninja' and |
49 gyp_msvs_version().startswith('2013')): | 49 gyp_msvs_version().startswith('2013')): |
50 print "Switched win from VS2010 to VS2013." | 50 print "Switched win from VS2010 to VS2013." |
51 print "Update to VS2013 Update 2." | 51 print "Update to VS2013 Update 2." |
52 print 'Need to clobber everything due to an IDL change in r154579 (blink)' | 52 print 'Need to clobber everything due to an IDL change in r154579 (blink)' |
53 print 'Need to clobber everything due to gen file moves in r175513 (Blink)' | 53 print 'Need to clobber everything due to gen file moves in r175513 (Blink)' |
54 if (platform() != 'ios'): | 54 if (platform() != 'ios'): |
55 print 'Clobber to get rid of obselete test plugin after r248358' | 55 print 'Clobber to get rid of obselete test plugin after r248358' |
56 print 'Clobber to rebuild GN files for V8' | 56 print 'Clobber to rebuild GN files for V8' |
57 print 'Need to clobber everything due to build_nexe change in nacl r13424' | |
Ken Russell (switch to Gerrit)
2014/07/02 23:04:48
Actually, the failure's only been seen on Windows
| |
57 | 58 |
58 | 59 |
59 def main(): | 60 def main(): |
60 parser = optparse.OptionParser() | 61 parser = optparse.OptionParser() |
61 parser.add_option('-t', '--target', | 62 parser.add_option('-t', '--target', |
62 help=='Target for which the landmines have to be emitted') | 63 help=='Target for which the landmines have to be emitted') |
63 | 64 |
64 options, args = parser.parse_args() | 65 options, args = parser.parse_args() |
65 | 66 |
66 if args: | 67 if args: |
67 parser.error('Unknown arguments %s' % args) | 68 parser.error('Unknown arguments %s' % args) |
68 | 69 |
69 print_landmines(options.target) | 70 print_landmines(options.target) |
70 return 0 | 71 return 0 |
71 | 72 |
72 | 73 |
73 if __name__ == '__main__': | 74 if __name__ == '__main__': |
74 sys.exit(main()) | 75 sys.exit(main()) |
OLD | NEW |