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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 print 'Clobber to fix GN not picking up increased ID range (crbug.com/444902)' | 70 print 'Clobber to fix GN not picking up increased ID range (crbug.com/444902)' |
71 print 'Remove NaCl toolchains from the output dir (crbug.com/456902)' | 71 print 'Remove NaCl toolchains from the output dir (crbug.com/456902)' |
72 if platform() == 'ios': | 72 if platform() == 'ios': |
73 print 'Clobber iOS to workaround Xcode deps bug (crbug.com/485435)' | 73 print 'Clobber iOS to workaround Xcode deps bug (crbug.com/485435)' |
74 if platform() == 'win': | 74 if platform() == 'win': |
75 print 'Clobber to delete stale generated files (crbug.com/510086)' | 75 print 'Clobber to delete stale generated files (crbug.com/510086)' |
76 if platform() == 'android' and gyp_defines().get('target_arch') == 'arm64': | 76 if platform() == 'android' and gyp_defines().get('target_arch') == 'arm64': |
77 print 'Clobber to support new location/infra for chrome_sync_shell_apk' | 77 print 'Clobber to support new location/infra for chrome_sync_shell_apk' |
78 if platform() == 'mac': | 78 if platform() == 'mac': |
79 print 'Clobber to get rid of evil libsqlite3.dylib (crbug.com/526208)' | 79 print 'Clobber to get rid of evil libsqlite3.dylib (crbug.com/526208)' |
| 80 if platform() == 'mac': |
| 81 print 'Clobber to remove libsystem.dylib. See crbug.com/620075' |
80 | 82 |
81 | 83 |
82 def main(): | 84 def main(): |
83 print_landmines() | 85 print_landmines() |
84 return 0 | 86 return 0 |
85 | 87 |
86 | 88 |
87 if __name__ == '__main__': | 89 if __name__ == '__main__': |
88 sys.exit(main()) | 90 sys.exit(main()) |
OLD | NEW |