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 12 matching lines...) Expand all Loading... |
23 def print_landmines(): | 23 def print_landmines(): |
24 """ | 24 """ |
25 ALL LANDMINES ARE EMITTED FROM HERE. | 25 ALL LANDMINES ARE EMITTED FROM HERE. |
26 """ | 26 """ |
27 # DO NOT add landmines as part of a regular CL. Landmines are a last-effort | 27 # DO NOT add landmines as part of a regular CL. Landmines are a last-effort |
28 # bandaid fix if a CL that got landed has a build dependency bug and all bots | 28 # bandaid fix if a CL that got landed has a build dependency bug and all bots |
29 # need to be cleaned up. If you're writing a new CL that causes build | 29 # need to be cleaned up. If you're writing a new CL that causes build |
30 # dependency problems, fix the dependency problems instead of adding a | 30 # dependency problems, fix the dependency problems instead of adding a |
31 # landmine. | 31 # landmine. |
32 | 32 |
33 if (distributor() == 'goma' and platform() == 'win32' and | 33 if distributor() == 'goma' and platform() == 'win32': |
34 builder() == 'ninja'): | |
35 print 'Need to clobber winja goma due to backend cwd cache fix.' | 34 print 'Need to clobber winja goma due to backend cwd cache fix.' |
36 if platform() == 'android': | 35 if platform() == 'android': |
37 print 'Clobber: to handle new way of suppressing findbugs failures.' | 36 print 'Clobber: to handle new way of suppressing findbugs failures.' |
38 print 'Clobber to fix gyp not rename package name (crbug.com/457038)' | 37 print 'Clobber to fix gyp not rename package name (crbug.com/457038)' |
39 if platform() == 'win' and builder() == 'ninja': | 38 if platform() == 'win': |
40 print 'Compile on cc_unittests fails due to symbols removed in r185063.' | 39 print 'Compile on cc_unittests fails due to symbols removed in r185063.' |
41 if platform() == 'linux' and builder() == 'ninja': | 40 if platform() == 'linux': |
42 print 'Builders switching from make to ninja will clobber on this.' | 41 print 'Builders switching from make to ninja will clobber on this.' |
43 if platform() == 'mac': | 42 if platform() == 'mac': |
44 print 'Switching from bundle to unbundled dylib (issue 14743002).' | 43 print 'Switching from bundle to unbundled dylib (issue 14743002).' |
45 if platform() in ('win', 'mac'): | 44 if platform() in ('win', 'mac'): |
46 print ('Improper dependency for create_nmf.py broke in r240802, ' | 45 print ('Improper dependency for create_nmf.py broke in r240802, ' |
47 'fixed in r240860.') | 46 'fixed in r240860.') |
48 if (platform() == 'win' and builder() == 'ninja' and | 47 if (platform() == 'win' and |
49 gyp_msvs_version() == '2012' and | 48 gyp_msvs_version() == '2012' and |
50 gyp_defines().get('target_arch') == 'x64' and | 49 gyp_defines().get('target_arch') == 'x64' and |
51 gyp_defines().get('dcheck_always_on') == '1'): | 50 gyp_defines().get('dcheck_always_on') == '1'): |
52 print "Switched win x64 trybots from VS2010 to VS2012." | 51 print "Switched win x64 trybots from VS2010 to VS2012." |
53 if (platform() == 'win' and builder() == 'ninja' and | 52 if (platform() == 'win' and |
54 gyp_msvs_version().startswith('2013')): | 53 gyp_msvs_version().startswith('2013')): |
55 print "Switch to VS2013" | 54 print "Switch to VS2013" |
56 if (platform() == 'win' and gyp_msvs_version().startswith('2015')): | 55 if (platform() == 'win' and gyp_msvs_version().startswith('2015')): |
57 print 'Switch to VS2015 Update 2' | 56 print 'Switch to VS2015 Update 2' |
58 print 'Need to clobber everything due to an IDL change in r154579 (blink)' | 57 print 'Need to clobber everything due to an IDL change in r154579 (blink)' |
59 print 'Need to clobber everything due to gen file moves in r175513 (Blink)' | 58 print 'Need to clobber everything due to gen file moves in r175513 (Blink)' |
60 if (platform() != 'ios'): | 59 if (platform() != 'ios'): |
61 print 'Clobber to get rid of obselete test plugin after r248358' | 60 print 'Clobber to get rid of obselete test plugin after r248358' |
62 print 'Clobber to rebuild GN files for V8' | 61 print 'Clobber to rebuild GN files for V8' |
63 print 'Clobber to get rid of stale generated mojom.h files' | 62 print 'Clobber to get rid of stale generated mojom.h files' |
(...skipping 15 matching lines...) Expand all Loading... |
79 print 'Clobber to get rid of evil libsqlite3.dylib (crbug.com/526208)' | 78 print 'Clobber to get rid of evil libsqlite3.dylib (crbug.com/526208)' |
80 | 79 |
81 | 80 |
82 def main(): | 81 def main(): |
83 print_landmines() | 82 print_landmines() |
84 return 0 | 83 return 0 |
85 | 84 |
86 | 85 |
87 if __name__ == '__main__': | 86 if __name__ == '__main__': |
88 sys.exit(main()) | 87 sys.exit(main()) |
OLD | NEW |