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

Side by Side Diff: build/get_landmines.py

Issue 2769283002: Enable noexcept on Windows, use for a few move constructors. (Closed)
Patch Set: Landmine Created 3 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
« no previous file with comments | « build/config/compiler/BUILD.gn ('k') | tools/gn/value.h » ('j') | 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 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 if platform() == 'win': 65 if platform() == 'win':
66 print 'Clobber to delete stale generated files (crbug.com/510086)' 66 print 'Clobber to delete stale generated files (crbug.com/510086)'
67 if platform() == 'android' and gyp_defines().get('target_arch') == 'arm64': 67 if platform() == 'android' and gyp_defines().get('target_arch') == 'arm64':
68 print 'Clobber to support new location/infra for chrome_sync_shell_apk' 68 print 'Clobber to support new location/infra for chrome_sync_shell_apk'
69 if platform() == 'mac': 69 if platform() == 'mac':
70 print 'Clobber to get rid of evil libsqlite3.dylib (crbug.com/526208)' 70 print 'Clobber to get rid of evil libsqlite3.dylib (crbug.com/526208)'
71 if platform() == 'mac': 71 if platform() == 'mac':
72 print 'Clobber to remove libsystem.dylib. See crbug.com/620075' 72 print 'Clobber to remove libsystem.dylib. See crbug.com/620075'
73 if platform() == 'mac': 73 if platform() == 'mac':
74 print 'Clobber to get past mojo gen build error (crbug.com/679607)' 74 print 'Clobber to get past mojo gen build error (crbug.com/679607)'
75 75 if platform() == 'win':
76 print 'Clobber Windows to fix strange PCH-not-rebuilt errors.'
76 77
77 def main(): 78 def main():
78 print_landmines() 79 print_landmines()
79 return 0 80 return 0
80 81
81 82
82 if __name__ == '__main__': 83 if __name__ == '__main__':
83 sys.exit(main()) 84 sys.exit(main())
OLDNEW
« no previous file with comments | « build/config/compiler/BUILD.gn ('k') | tools/gn/value.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698