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

Side by Side Diff: build/get_landmines.py

Issue 1783773004: Reland of Change default Windows compiler to VS 2015 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 if platform() in ('win', 'mac'): 45 if platform() in ('win', 'mac'):
46 print ('Improper dependency for create_nmf.py broke in r240802, ' 46 print ('Improper dependency for create_nmf.py broke in r240802, '
47 'fixed in r240860.') 47 'fixed in r240860.')
48 if (platform() == 'win' and builder() == 'ninja' and 48 if (platform() == 'win' and builder() == 'ninja' and
49 gyp_msvs_version() == '2012' and 49 gyp_msvs_version() == '2012' and
50 gyp_defines().get('target_arch') == 'x64' and 50 gyp_defines().get('target_arch') == 'x64' and
51 gyp_defines().get('dcheck_always_on') == '1'): 51 gyp_defines().get('dcheck_always_on') == '1'):
52 print "Switched win x64 trybots from VS2010 to VS2012." 52 print "Switched win x64 trybots from VS2010 to VS2012."
53 if (platform() == 'win' and builder() == 'ninja' and 53 if (platform() == 'win' and builder() == 'ninja' and
54 gyp_msvs_version().startswith('2013')): 54 gyp_msvs_version().startswith('2013')):
55 print "Switched win from VS2010 to VS2013." 55 print "Switch to VS2013"
56 print "Update to VS2013 Update 2."
57 print "Update to VS2013 Update 4."
58 if (platform() == 'win' and gyp_msvs_version().startswith('2015')): 56 if (platform() == 'win' and gyp_msvs_version().startswith('2015')):
59 print 'Switch to VS2015' 57 print 'Switch to VS2015'
60 print 'Need to clobber everything due to an IDL change in r154579 (blink)' 58 print 'Need to clobber everything due to an IDL change in r154579 (blink)'
61 print 'Need to clobber everything due to gen file moves in r175513 (Blink)' 59 print 'Need to clobber everything due to gen file moves in r175513 (Blink)'
62 if (platform() != 'ios'): 60 if (platform() != 'ios'):
63 print 'Clobber to get rid of obselete test plugin after r248358' 61 print 'Clobber to get rid of obselete test plugin after r248358'
64 print 'Clobber to rebuild GN files for V8' 62 print 'Clobber to rebuild GN files for V8'
65 print 'Clobber to get rid of stale generated mojom.h files' 63 print 'Clobber to get rid of stale generated mojom.h files'
66 print 'Need to clobber everything due to build_nexe change in nacl r13424' 64 print 'Need to clobber everything due to build_nexe change in nacl r13424'
67 print '[chromium-dev] PSA: clobber build needed for IDR_INSPECTOR_* compil...' 65 print '[chromium-dev] PSA: clobber build needed for IDR_INSPECTOR_* compil...'
(...skipping 13 matching lines...) Expand all
81 print 'Clobber to get rid of evil libsqlite3.dylib (crbug.com/526208)' 79 print 'Clobber to get rid of evil libsqlite3.dylib (crbug.com/526208)'
82 80
83 81
84 def main(): 82 def main():
85 print_landmines() 83 print_landmines()
86 return 0 84 return 0
87 85
88 86
89 if __name__ == '__main__': 87 if __name__ == '__main__':
90 sys.exit(main()) 88 sys.exit(main())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698