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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
68 print 'blink_resources.grd changed: crbug.com/400860' | 68 print 'blink_resources.grd changed: crbug.com/400860' |
69 print 'ninja dependency cycle: crbug.com/408192' | 69 print 'ninja dependency cycle: crbug.com/408192' |
70 print 'Clobber to fix missing NaCl gyp dependencies (crbug.com/427427).' | 70 print 'Clobber to fix missing NaCl gyp dependencies (crbug.com/427427).' |
71 print 'Another clobber for missing NaCl gyp deps (crbug.com/427427).' | 71 print 'Another clobber for missing NaCl gyp deps (crbug.com/427427).' |
72 print 'Clobber to fix GN not picking up increased ID range (crbug.com/444902)' | 72 print 'Clobber to fix GN not picking up increased ID range (crbug.com/444902)' |
73 print 'Remove NaCl toolchains from the output dir (crbug.com/456902)' | 73 print 'Remove NaCl toolchains from the output dir (crbug.com/456902)' |
74 if platform() == 'ios': | 74 if platform() == 'ios': |
75 print 'Clobber iOS to workaround Xcode deps bug (crbug.com/485435)' | 75 print 'Clobber iOS to workaround Xcode deps bug (crbug.com/485435)' |
76 if platform() == 'win': | 76 if platform() == 'win': |
77 print 'Clobber to delete stale generated files (crbug.com/510086)' | 77 print 'Clobber to delete stale generated files (crbug.com/510086)' |
| 78 if platform() == 'android' and gyp_defines().get('target_arch') == 'arm64': |
| 79 print 'Clobber to support new location/infra for chrome_sync_shell_apk' |
78 | 80 |
79 | 81 |
80 def main(): | 82 def main(): |
81 print_landmines() | 83 print_landmines() |
82 return 0 | 84 return 0 |
83 | 85 |
84 | 86 |
85 if __name__ == '__main__': | 87 if __name__ == '__main__': |
86 sys.exit(main()) | 88 sys.exit(main()) |
OLD | NEW |