| 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 29 matching lines...) Expand all Loading... |
| 40 'fixed in r240860.') | 40 'fixed in r240860.') |
| 41 if (platform() == 'win' and builder() == 'ninja' and | 41 if (platform() == 'win' and builder() == 'ninja' and |
| 42 gyp_msvs_version() == '2012' and | 42 gyp_msvs_version() == '2012' and |
| 43 gyp_defines().get('target_arch') == 'x64' and | 43 gyp_defines().get('target_arch') == 'x64' and |
| 44 gyp_defines().get('dcheck_always_on') == '1'): | 44 gyp_defines().get('dcheck_always_on') == '1'): |
| 45 print "Switched win x64 trybots from VS2010 to VS2012." | 45 print "Switched win x64 trybots from VS2010 to VS2012." |
| 46 if (platform() == 'win' and builder() == 'ninja' and | 46 if (platform() == 'win' and builder() == 'ninja' and |
| 47 gyp_msvs_version().startswith('2013')): | 47 gyp_msvs_version().startswith('2013')): |
| 48 print "Switched win from VS2010 to VS2013." | 48 print "Switched win from VS2010 to VS2013." |
| 49 print "Update to VS2013 Update 2." | 49 print "Update to VS2013 Update 2." |
| 50 print "Update to VS2013 Update 3." | |
| 51 print 'Need to clobber everything due to an IDL change in r154579 (blink)' | 50 print 'Need to clobber everything due to an IDL change in r154579 (blink)' |
| 52 print 'Need to clobber everything due to gen file moves in r175513 (Blink)' | 51 print 'Need to clobber everything due to gen file moves in r175513 (Blink)' |
| 53 if (platform() != 'ios'): | 52 if (platform() != 'ios'): |
| 54 print 'Clobber to get rid of obselete test plugin after r248358' | 53 print 'Clobber to get rid of obselete test plugin after r248358' |
| 55 print 'Clobber to rebuild GN files for V8' | 54 print 'Clobber to rebuild GN files for V8' |
| 56 print 'Need to clobber everything due to build_nexe change in nacl r13424' | 55 print 'Need to clobber everything due to build_nexe change in nacl r13424' |
| 57 print '[chromium-dev] PSA: clobber build needed for IDR_INSPECTOR_* compil...' | 56 print '[chromium-dev] PSA: clobber build needed for IDR_INSPECTOR_* compil...' |
| 58 print 'blink_resources.grd changed: crbug.com/400860' | 57 print 'blink_resources.grd changed: crbug.com/400860' |
| 59 | 58 |
| 60 | 59 |
| 61 def main(): | 60 def main(): |
| 62 print_landmines() | 61 print_landmines() |
| 63 return 0 | 62 return 0 |
| 64 | 63 |
| 65 | 64 |
| 66 if __name__ == '__main__': | 65 if __name__ == '__main__': |
| 67 sys.exit(main()) | 66 sys.exit(main()) |
| OLD | NEW |