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 | 23 |
24 def print_landmines(target): | 24 def print_landmines(target): |
25 """ | 25 """ |
26 ALL LANDMINES ARE EMITTED FROM HERE. | 26 ALL LANDMINES ARE EMITTED FROM HERE. |
27 target can be one of {'Release', 'Debug', 'Debug_x64', 'Release_x64'}. | 27 target can be one of {'Release', 'Debug', 'Debug_x64', 'Release_x64'}. |
28 """ | 28 """ |
29 if (distributor() == 'goma' and platform() == 'win32' and | 29 if (distributor() == 'goma' and platform() == 'win32' and |
30 builder() == 'ninja'): | 30 builder() == 'ninja'): |
31 print 'Need to clobber winja goma due to backend cwd cache fix.' | 31 print 'Need to clobber winja goma due to backend cwd cache fix.' |
32 if platform() == 'android': | 32 if platform() == 'android': |
33 print 'Clobber: To get rid of NoSuchFieldError in issue 350703003.' | 33 print 'Clobber: To get rid of generated files in the wrong package.' |
34 if platform() == 'win' and builder() == 'ninja': | 34 if platform() == 'win' and builder() == 'ninja': |
35 print 'Compile on cc_unittests fails due to symbols removed in r185063.' | 35 print 'Compile on cc_unittests fails due to symbols removed in r185063.' |
36 if platform() == 'linux' and builder() == 'ninja': | 36 if platform() == 'linux' and builder() == 'ninja': |
37 print 'Builders switching from make to ninja will clobber on this.' | 37 print 'Builders switching from make to ninja will clobber on this.' |
38 if platform() == 'mac': | 38 if platform() == 'mac': |
39 print 'Switching from bundle to unbundled dylib (issue 14743002).' | 39 print 'Switching from bundle to unbundled dylib (issue 14743002).' |
40 if platform() in ('win', 'mac'): | 40 if platform() in ('win', 'mac'): |
41 print ('Improper dependency for create_nmf.py broke in r240802, ' | 41 print ('Improper dependency for create_nmf.py broke in r240802, ' |
42 'fixed in r240860.') | 42 'fixed in r240860.') |
43 if (platform() == 'win' and builder() == 'ninja' and | 43 if (platform() == 'win' and builder() == 'ninja' and |
(...skipping 21 matching lines...) Expand all Loading... |
65 | 65 |
66 if args: | 66 if args: |
67 parser.error('Unknown arguments %s' % args) | 67 parser.error('Unknown arguments %s' % args) |
68 | 68 |
69 print_landmines(options.target) | 69 print_landmines(options.target) |
70 return 0 | 70 return 0 |
71 | 71 |
72 | 72 |
73 if __name__ == '__main__': | 73 if __name__ == '__main__': |
74 sys.exit(main()) | 74 sys.exit(main()) |
OLD | NEW |