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 27 matching lines...) Expand all Loading... |
38 if platform() == 'win': | 38 if platform() == 'win': |
39 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.' |
40 if platform() == 'linux': | 40 if platform() == 'linux': |
41 print 'Builders switching from make to ninja will clobber on this.' | 41 print 'Builders switching from make to ninja will clobber on this.' |
42 if platform() == 'mac': | 42 if platform() == 'mac': |
43 print 'Switching from bundle to unbundled dylib (issue 14743002).' | 43 print 'Switching from bundle to unbundled dylib (issue 14743002).' |
44 if platform() in ('win', 'mac'): | 44 if platform() in ('win', 'mac'): |
45 print ('Improper dependency for create_nmf.py broke in r240802, ' | 45 print ('Improper dependency for create_nmf.py broke in r240802, ' |
46 'fixed in r240860.') | 46 'fixed in r240860.') |
47 if (platform() == 'win' and gyp_msvs_version().startswith('2015')): | 47 if (platform() == 'win' and gyp_msvs_version().startswith('2015')): |
48 print 'Switch to VS2015 Update 3' | 48 print 'Switch to VS2015 Update 3, 14393 SDK' |
49 print 'Need to clobber everything due to an IDL change in r154579 (blink)' | 49 print 'Need to clobber everything due to an IDL change in r154579 (blink)' |
50 print 'Need to clobber everything due to gen file moves in r175513 (Blink)' | 50 print 'Need to clobber everything due to gen file moves in r175513 (Blink)' |
51 if (platform() != 'ios'): | 51 if (platform() != 'ios'): |
52 print 'Clobber to get rid of obselete test plugin after r248358' | 52 print 'Clobber to get rid of obselete test plugin after r248358' |
53 print 'Clobber to rebuild GN files for V8' | 53 print 'Clobber to rebuild GN files for V8' |
54 print 'Clobber to get rid of stale generated mojom.h files' | 54 print 'Clobber to get rid of stale generated mojom.h files' |
55 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' |
56 print '[chromium-dev] PSA: clobber build needed for IDR_INSPECTOR_* compil...' | 56 print '[chromium-dev] PSA: clobber build needed for IDR_INSPECTOR_* compil...' |
57 print 'blink_resources.grd changed: crbug.com/400860' | 57 print 'blink_resources.grd changed: crbug.com/400860' |
58 print 'ninja dependency cycle: crbug.com/408192' | 58 print 'ninja dependency cycle: crbug.com/408192' |
(...skipping 13 matching lines...) Expand all Loading... |
72 print 'Clobber to remove libsystem.dylib. See crbug.com/620075' | 72 print 'Clobber to remove libsystem.dylib. See crbug.com/620075' |
73 | 73 |
74 | 74 |
75 def main(): | 75 def main(): |
76 print_landmines() | 76 print_landmines() |
77 return 0 | 77 return 0 |
78 | 78 |
79 | 79 |
80 if __name__ == '__main__': | 80 if __name__ == '__main__': |
81 sys.exit(main()) | 81 sys.exit(main()) |
OLD | NEW |