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

Side by Side Diff: build/get_landmines.py

Issue 1308333003: Clobber #401 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 3 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 | « no previous file | services/dart/dart_apptests/BUILD.gn » ('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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 print '[chromium-dev] PSA: clobber build needed for IDR_INSPECTOR_* compil...' 66 print '[chromium-dev] PSA: clobber build needed for IDR_INSPECTOR_* compil...'
67 print 'blink_resources.grd changed: crbug.com/400860' 67 print 'blink_resources.grd changed: crbug.com/400860'
68 print 'ninja dependency cycle: crbug.com/408192' 68 print 'ninja dependency cycle: crbug.com/408192'
69 print 'Clobber to fix missing NaCl gyp dependencies (crbug.com/427427).' 69 print 'Clobber to fix missing NaCl gyp dependencies (crbug.com/427427).'
70 print 'Another clobber for missing NaCl gyp deps (crbug.com/427427).' 70 print 'Another clobber for missing NaCl gyp deps (crbug.com/427427).'
71 print 'Clobber to fix GN not picking up increased ID range (crbug.com/444902)' 71 print 'Clobber to fix GN not picking up increased ID range (crbug.com/444902)'
72 print 'Remove NaCl toolchains from the output dir (crbug.com/456902)' 72 print 'Remove NaCl toolchains from the output dir (crbug.com/456902)'
73 if platform() == 'ios': 73 if platform() == 'ios':
74 print 'Clobber iOS to workaround Xcode deps bug (crbug.com/485435)' 74 print 'Clobber iOS to workaround Xcode deps bug (crbug.com/485435)'
75 print 'Clobber: https://github.com/domokit/mojo/issues/269' 75 print 'Clobber: https://github.com/domokit/mojo/issues/269'
76 print 'Clobber: https://github.com/domokit/mojo/issues/401'
76 77
77 78
78 def main(): 79 def main():
79 print_landmines() 80 print_landmines()
80 return 0 81 return 0
81 82
82 83
83 if __name__ == '__main__': 84 if __name__ == '__main__':
84 sys.exit(main()) 85 sys.exit(main())
OLDNEW
« no previous file with comments | « no previous file | services/dart/dart_apptests/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698