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

Side by Side Diff: build/get_landmines.py

Issue 615893003: Use the new java_cpp_enum rule in content. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix android_aosp Created 6 years, 2 months 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
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2013 The Chromium Authors. All rights reserved. 2 # Copyright 2013 The Chromium 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 print "Update to VS2013 Update 2." 49 print "Update to VS2013 Update 2."
50 print 'Need to clobber everything due to an IDL change in r154579 (blink)' 50 print 'Need to clobber everything due to an IDL change in r154579 (blink)'
51 print 'Need to clobber everything due to gen file moves in r175513 (Blink)' 51 print 'Need to clobber everything due to gen file moves in r175513 (Blink)'
52 if (platform() != 'ios'): 52 if (platform() != 'ios'):
53 print 'Clobber to get rid of obselete test plugin after r248358' 53 print 'Clobber to get rid of obselete test plugin after r248358'
54 print 'Clobber to rebuild GN files for V8' 54 print 'Clobber to rebuild GN files for V8'
55 print 'Need to clobber everything due to build_nexe change in nacl r13424' 55 print 'Need to clobber everything due to build_nexe change in nacl r13424'
56 print '[chromium-dev] PSA: clobber build needed for IDR_INSPECTOR_* compil...' 56 print '[chromium-dev] PSA: clobber build needed for IDR_INSPECTOR_* compil...'
57 print 'blink_resources.grd changed: crbug.com/400860' 57 print 'blink_resources.grd changed: crbug.com/400860'
58 print 'ninja dependency cycle: crbug.com/408192' 58 print 'ninja dependency cycle: crbug.com/408192'
59 if platform() == 'android':
60 print 'Clobber: To delete stale generated .java files.'
scottmg 2014/09/30 17:48:28 nit; something a little more unique here (bug numb
59 61
60 62
61 def main(): 63 def main():
62 print_landmines() 64 print_landmines()
63 return 0 65 return 0
64 66
65 67
66 if __name__ == '__main__': 68 if __name__ == '__main__':
67 sys.exit(main()) 69 sys.exit(main())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698