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 30 matching lines...) Expand all Loading... |
41 print ('Clobber to remove old AppRTCDemo artifacts after renaming to ' | 41 print ('Clobber to remove old AppRTCDemo artifacts after renaming to ' |
42 'AppRTCMobile in https://codereview.webrtc.org/2373443005') | 42 'AppRTCMobile in https://codereview.webrtc.org/2373443005') |
43 print ('Clobber to fix Android x86/x64 builds after ' | 43 print ('Clobber to fix Android x86/x64 builds after ' |
44 'https://codereview.webrtc.org/1414343008/') | 44 'https://codereview.webrtc.org/1414343008/') |
45 if platform() == 'win': | 45 if platform() == 'win': |
46 print 'Clobber to resolve some issues with corrupt .pdb files on bots.' | 46 print 'Clobber to resolve some issues with corrupt .pdb files on bots.' |
47 print 'Clobber due to corrupt .pdb files (after #14623)' | 47 print 'Clobber due to corrupt .pdb files (after #14623)' |
48 print 'Clobber due to Win 64-bit Debug linking error (crbug.com/668961)' | 48 print 'Clobber due to Win 64-bit Debug linking error (crbug.com/668961)' |
49 print ('Clobber due to Win Clang Debug linking errors in ' | 49 print ('Clobber due to Win Clang Debug linking errors in ' |
50 'https://codereview.webrtc.org/2786603002') | 50 'https://codereview.webrtc.org/2786603002') |
| 51 print ('Clobber due to Win Debug linking errors in ' |
| 52 'https://codereview.webrtc.org/2832063003/') |
51 if platform() == 'mac': | 53 if platform() == 'mac': |
52 # platform == 'ios' doesn't work since it assumes GYP_DEFINES is set, which | 54 # platform == 'ios' doesn't work since it assumes GYP_DEFINES is set, which |
53 # is no longer the case. | 55 # is no longer the case. |
54 print 'Clobber due to iOS compile errors (crbug.com/694721)' | 56 print 'Clobber due to iOS compile errors (crbug.com/694721)' |
55 print 'Clobber to unblock https://codereview.webrtc.org/2709573003' | 57 print 'Clobber to unblock https://codereview.webrtc.org/2709573003' |
56 print ('Clobber to fix https://codereview.webrtc.org/2709573003 after ' | 58 print ('Clobber to fix https://codereview.webrtc.org/2709573003 after ' |
57 'landing') | 59 'landing') |
58 print ('Clobber to fix https://codereview.webrtc.org/2767383005 before' | 60 print ('Clobber to fix https://codereview.webrtc.org/2767383005 before' |
59 'landing (changing rtc_executable -> rtc_test on iOS)') | 61 'landing (changing rtc_executable -> rtc_test on iOS)') |
60 print ('Clobber to fix https://codereview.webrtc.org/2767383005 before' | 62 print ('Clobber to fix https://codereview.webrtc.org/2767383005 before' |
61 'landing (changing rtc_executable -> rtc_test on iOS)') | 63 'landing (changing rtc_executable -> rtc_test on iOS)') |
62 print 'Another landmine for low_bandwidth_audio_test (webrtc:7430)' | 64 print 'Another landmine for low_bandwidth_audio_test (webrtc:7430)' |
63 | 65 |
64 | 66 |
65 def main(): | 67 def main(): |
66 print_landmines() | 68 print_landmines() |
67 return 0 | 69 return 0 |
68 | 70 |
69 | 71 |
70 if __name__ == '__main__': | 72 if __name__ == '__main__': |
71 sys.exit(main()) | 73 sys.exit(main()) |
OLD | NEW |