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

Side by Side Diff: build/get_landmines.py

Issue 400203002: Roll Breakpad from 1345 to 1351. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add a landmine to clobber the android builders Created 6 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « DEPS ('k') | 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 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 12 matching lines...) Expand all
23 23
24 def print_landmines(target): 24 def print_landmines(target):
25 """ 25 """
26 ALL LANDMINES ARE EMITTED FROM HERE. 26 ALL LANDMINES ARE EMITTED FROM HERE.
27 target can be one of {'Release', 'Debug', 'Debug_x64', 'Release_x64'}. 27 target can be one of {'Release', 'Debug', 'Debug_x64', 'Release_x64'}.
28 """ 28 """
29 if (distributor() == 'goma' and platform() == 'win32' and 29 if (distributor() == 'goma' and platform() == 'win32' and
30 builder() == 'ninja'): 30 builder() == 'ninja'):
31 print 'Need to clobber winja goma due to backend cwd cache fix.' 31 print 'Need to clobber winja goma due to backend cwd cache fix.'
32 if platform() == 'android': 32 if platform() == 'android':
33 print 'Clobber: To avoid unresolved link errors on Breakpad roll.'
33 print 'Clobber: To get rid of generated files in the wrong package.' 34 print 'Clobber: To get rid of generated files in the wrong package.'
34 if platform() == 'win' and builder() == 'ninja': 35 if platform() == 'win' and builder() == 'ninja':
35 print 'Compile on cc_unittests fails due to symbols removed in r185063.' 36 print 'Compile on cc_unittests fails due to symbols removed in r185063.'
36 if platform() == 'linux' and builder() == 'ninja': 37 if platform() == 'linux' and builder() == 'ninja':
37 print 'Builders switching from make to ninja will clobber on this.' 38 print 'Builders switching from make to ninja will clobber on this.'
38 if platform() == 'mac': 39 if platform() == 'mac':
39 print 'Switching from bundle to unbundled dylib (issue 14743002).' 40 print 'Switching from bundle to unbundled dylib (issue 14743002).'
40 if platform() in ('win', 'mac'): 41 if platform() in ('win', 'mac'):
41 print ('Improper dependency for create_nmf.py broke in r240802, ' 42 print ('Improper dependency for create_nmf.py broke in r240802, '
42 'fixed in r240860.') 43 'fixed in r240860.')
(...skipping 23 matching lines...) Expand all
66 67
67 if args: 68 if args:
68 parser.error('Unknown arguments %s' % args) 69 parser.error('Unknown arguments %s' % args)
69 70
70 print_landmines(options.target) 71 print_landmines(options.target)
71 return 0 72 return 0
72 73
73 74
74 if __name__ == '__main__': 75 if __name__ == '__main__':
75 sys.exit(main()) 76 sys.exit(main())
OLDNEW
« no previous file with comments | « DEPS ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698