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 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
56 print 'Clobber to rebuild GN files for V8' | 56 print 'Clobber to rebuild GN files for V8' |
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 if platform() == 'android': | 61 if platform() == 'android': |
62 print 'Delete stale generated .java files yet again. crbug.com/349592' | 62 print 'Delete stale generated .java files yet again. crbug.com/349592' |
63 print 'Clobber to delete incompatible object binary format with NDK r10c' | 63 print 'Clobber to delete incompatible object binary format with NDK r10c' |
64 print 'Clobber to fix missing NaCl gyp dependencies (crbug.com/427427).' | 64 print 'Clobber to fix missing NaCl gyp dependencies (crbug.com/427427).' |
65 print 'Another clobber for missing NaCl gyp deps (crbug.com/427427).' | 65 print 'Another clobber for missing NaCl gyp deps (crbug.com/427427).' |
66 print 'Clobber to fix GN not picking up increased ID range (crbug.com/444902)' | |
eroman
2014/12/23 22:51:42
Is there any way to restrict this further?
Is this
dcheng
2014/12/23 22:53:35
There doesn't seem to be atm =/
| |
66 | 67 |
67 | 68 |
68 def main(): | 69 def main(): |
69 print_landmines() | 70 print_landmines() |
70 return 0 | 71 return 0 |
71 | 72 |
72 | 73 |
73 if __name__ == '__main__': | 74 if __name__ == '__main__': |
74 sys.exit(main()) | 75 sys.exit(main()) |
OLD | NEW |