OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. | 2 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. |
3 # | 3 # |
4 # Use of this source code is governed by a BSD-style license | 4 # Use of this source code is governed by a BSD-style license |
5 # that can be found in the LICENSE file in the root of the source | 5 # that can be found in the LICENSE file in the root of the source |
6 # tree. An additional intellectual property rights grant can be found | 6 # tree. An additional intellectual property rights grant can be found |
7 # in the file PATENTS. All contributing project authors may | 7 # in the file PATENTS. All contributing project authors may |
8 # be found in the AUTHORS file in the root of the source tree. | 8 # be found in the AUTHORS file in the root of the source tree. |
9 | 9 |
10 """ | 10 """ |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
42 print ('Clobber to remove artifacts on Android causing lint errors after ' | 42 print ('Clobber to remove artifacts on Android causing lint errors after ' |
43 'rolling in https://codereview.webrtc.org/2293863002') | 43 'rolling in https://codereview.webrtc.org/2293863002') |
44 print ('Clobber to remove old AppRTCDemo artifacts after renaming to ' | 44 print ('Clobber to remove old AppRTCDemo artifacts after renaming to ' |
45 'AppRTCMobile in https://codereview.webrtc.org/2373443005') | 45 'AppRTCMobile in https://codereview.webrtc.org/2373443005') |
46 print ('Clobber to fix Android x86/x64 builds after ' | 46 print ('Clobber to fix Android x86/x64 builds after ' |
47 'https://codereview.webrtc.org/1414343008/') | 47 'https://codereview.webrtc.org/1414343008/') |
48 if platform() == 'win': | 48 if platform() == 'win': |
49 print 'Clobber to resolve some issues with corrupt .pdb files on bots.' | 49 print 'Clobber to resolve some issues with corrupt .pdb files on bots.' |
50 print 'Clobber due to corrupt .pdb files (after #14623)' | 50 print 'Clobber due to corrupt .pdb files (after #14623)' |
51 print 'Clobber due to Win 64-bit Debug linking error (crbug.com/668961)' | 51 print 'Clobber due to Win 64-bit Debug linking error (crbug.com/668961)' |
| 52 if platform() == 'mac': |
| 53 # platform == 'ios' doesn't work since it assumes GYP_DEFINES is set, which |
| 54 # is no longer the case. |
| 55 print 'Clobber due to iOS compile errors (crbug.com/694721)' |
52 | 56 |
53 | 57 |
54 def main(): | 58 def main(): |
55 print_landmines() | 59 print_landmines() |
56 return 0 | 60 return 0 |
57 | 61 |
58 | 62 |
59 if __name__ == '__main__': | 63 if __name__ == '__main__': |
60 sys.exit(main()) | 64 sys.exit(main()) |
OLD | NEW |