Chromium Code Reviews| 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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 52 if (platform() != 'ios'): | 52 if (platform() != 'ios'): |
| 53 print 'Clobber to get rid of obselete test plugin after r248358' | 53 print 'Clobber to get rid of obselete test plugin after r248358' |
| 54 print 'Clobber to rebuild GN files for V8' | 54 print 'Clobber to rebuild GN files for V8' |
| 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' |
| 59 if platform() == 'android': | 59 if platform() == 'android': |
| 60 print 'Clobber: To delete stale generated .java files.' | 60 print 'Clobber: To delete stale generated .java files.' |
| 61 print 'Delete stale generated .java files again. crbug.com/349592' | 61 print 'Delete stale generated .java files again. crbug.com/349592' |
| 62 print 'Delete stale generated .java files again. crbug.com/349592' | |
|
Yaron
2014/10/15 02:36:49
dup? or is this file special in that adding an out
mkosiba (inactive)
2014/10/15 09:46:08
Intentional and seems to work. I changed the line
cjhopman
2014/10/16 16:54:51
For the record, a landmine is triggered whenever t
| |
| 62 | 63 |
| 63 | 64 |
| 64 def main(): | 65 def main(): |
| 65 print_landmines() | 66 print_landmines() |
| 66 return 0 | 67 return 0 |
| 67 | 68 |
| 68 | 69 |
| 69 if __name__ == '__main__': | 70 if __name__ == '__main__': |
| 70 sys.exit(main()) | 71 sys.exit(main()) |
| OLD | NEW |