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 23 matching lines...) Expand all Loading... |
34 # DO NOT add landmines as part of a regular CL. Landmines are a last-effort | 34 # DO NOT add landmines as part of a regular CL. Landmines are a last-effort |
35 # bandaid fix if a CL that got landed has a build dependency bug and all bots | 35 # bandaid fix if a CL that got landed has a build dependency bug and all bots |
36 # need to be cleaned up. If you're writing a new CL that causes build | 36 # need to be cleaned up. If you're writing a new CL that causes build |
37 # dependency problems, fix the dependency problems instead of adding a | 37 # dependency problems, fix the dependency problems instead of adding a |
38 # landmine. | 38 # landmine. |
39 # See the Chromium version in src/build/get_landmines.py for usage examples. | 39 # See the Chromium version in src/build/get_landmines.py for usage examples. |
40 print 'Clobber to remove out/{Debug,Release}/args.gn (webrtc:5070)' | 40 print 'Clobber to remove out/{Debug,Release}/args.gn (webrtc:5070)' |
41 if platform() == 'android': | 41 if platform() == 'android': |
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 ' |
| 45 'AppRTCMobile in https://codereview.webrtc.org/2373443005') |
| 46 if platform() == 'win': |
| 47 print 'Clobber to resolve some issues with corrupt .pdb files on bots.' |
44 | 48 |
45 | 49 |
46 def main(): | 50 def main(): |
47 print_landmines() | 51 print_landmines() |
48 return 0 | 52 return 0 |
49 | 53 |
50 | 54 |
51 if __name__ == '__main__': | 55 if __name__ == '__main__': |
52 sys.exit(main()) | 56 sys.exit(main()) |
OLD | NEW |