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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
54 print 'Clobber to get rid of obselete test plugin after r248358' | 54 print 'Clobber to get rid of obselete test plugin after r248358' |
55 print 'Clobber to rebuild GN files for V8' | 55 print 'Clobber to rebuild GN files for V8' |
56 print 'Clobber to get rid of stale generated mojom.h files' | 56 print 'Clobber to get rid of stale generated mojom.h files' |
57 print 'Need to clobber everything due to build_nexe change in nacl r13424' | 57 print 'Need to clobber everything due to build_nexe change in nacl r13424' |
58 print '[chromium-dev] PSA: clobber build needed for IDR_INSPECTOR_* compil...' | 58 print '[chromium-dev] PSA: clobber build needed for IDR_INSPECTOR_* compil...' |
59 print 'blink_resources.grd changed: crbug.com/400860' | 59 print 'blink_resources.grd changed: crbug.com/400860' |
60 print 'ninja dependency cycle: crbug.com/408192' | 60 print 'ninja dependency cycle: crbug.com/408192' |
61 print 'Clobber to fix missing NaCl gyp dependencies (crbug.com/427427).' | 61 print 'Clobber to fix missing NaCl gyp dependencies (crbug.com/427427).' |
62 print 'Another clobber for missing NaCl gyp deps (crbug.com/427427).' | 62 print 'Another clobber for missing NaCl gyp deps (crbug.com/427427).' |
63 print 'Clobber to fix GN not picking up increased ID range (crbug.com/444902)' | 63 print 'Clobber to fix GN not picking up increased ID range (crbug.com/444902)' |
64 if platform() == 'android': | |
65 print 'Clobber to fix gyp not rename package name (crbug.com/457038)' | |
cjhopman
2015/02/10 19:26:20
just add this to the platform() == 'android' block
Ian Wen
2015/02/11 20:02:52
Done.
| |
64 | 66 |
65 | 67 |
66 def main(): | 68 def main(): |
67 print_landmines() | 69 print_landmines() |
68 return 0 | 70 return 0 |
69 | 71 |
70 | 72 |
71 if __name__ == '__main__': | 73 if __name__ == '__main__': |
72 sys.exit(main()) | 74 sys.exit(main()) |
OLD | NEW |