OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright 2014 the V8 project authors. All rights reserved. | 2 # Copyright 2014 the V8 project 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 13 matching lines...) Expand all Loading... |
24 print 'Moar clobbering...' | 24 print 'Moar clobbering...' |
25 print 'Remove build/android.gypi' | 25 print 'Remove build/android.gypi' |
26 print 'Cleanup after windows ninja switch attempt.' | 26 print 'Cleanup after windows ninja switch attempt.' |
27 print 'Switching to pinned msvs toolchain.' | 27 print 'Switching to pinned msvs toolchain.' |
28 print 'Clobbering to hopefully resolve problem with mksnapshot' | 28 print 'Clobbering to hopefully resolve problem with mksnapshot' |
29 print 'Clobber after ICU roll.' | 29 print 'Clobber after ICU roll.' |
30 print 'Clobber after Android NDK update.' | 30 print 'Clobber after Android NDK update.' |
31 print 'Clober to fix windows build problems.' | 31 print 'Clober to fix windows build problems.' |
32 print 'Clober again to fix windows build problems.' | 32 print 'Clober again to fix windows build problems.' |
33 print 'Clobber to possibly resolve failure on win-32 bot.' | 33 print 'Clobber to possibly resolve failure on win-32 bot.' |
| 34 print 'Clobber for http://crbug.com/668958.' |
34 return 0 | 35 return 0 |
35 | 36 |
36 | 37 |
37 if __name__ == '__main__': | 38 if __name__ == '__main__': |
38 sys.exit(main()) | 39 sys.exit(main()) |
OLD | NEW |