Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1539)

Side by Side Diff: webrtc/build/get_landmines.py

Issue 1415453006: Landmine: clobber to remove out/{Debug,Release}/args.gn (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 20 matching lines...) Expand all
31 def print_landmines(): 31 def print_landmines():
32 """ 32 """
33 ALL LANDMINES ARE EMITTED FROM HERE. 33 ALL LANDMINES ARE EMITTED FROM HERE.
34 """ 34 """
35 # DO NOT add landmines as part of a regular CL. Landmines are a last-effort 35 # DO NOT add landmines as part of a regular CL. Landmines are a last-effort
36 # bandaid fix if a CL that got landed has a build dependency bug and all bots 36 # bandaid fix if a CL that got landed has a build dependency bug and all bots
37 # need to be cleaned up. If you're writing a new CL that causes build 37 # need to be cleaned up. If you're writing a new CL that causes build
38 # dependency problems, fix the dependency problems instead of adding a 38 # dependency problems, fix the dependency problems instead of adding a
39 # landmine. 39 # landmine.
40 # See the Chromium version in src/build/get_landmines.py for usage examples. 40 # See the Chromium version in src/build/get_landmines.py for usage examples.
41 pass 41 print 'Clobber to remove out/{Debug,Release}/args.gn (webrtc:5070)'
42 42
43 43
44 def main(): 44 def main():
45 print_landmines() 45 print_landmines()
46 return 0 46 return 0
47 47
48 48
49 if __name__ == '__main__': 49 if __name__ == '__main__':
50 sys.exit(main()) 50 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698