blob: 9fcca4b968a88831d4fe9eb0ac51cdf2c161175f [file] [log] [blame]
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001#!/usr/bin/env python
2# Copyright 2014 the V8 project authors. All rights reserved.
3# Use of this source code is governed by a BSD-style license that can be
4# found in the LICENSE file.
5
6"""
7This file emits the list of reasons why a particular build needs to be clobbered
8(or a list of 'landmines').
9"""
10
11import sys
12
13
14def main():
15 """
16 ALL LANDMINES ARE EMITTED FROM HERE.
17 """
18 print 'Need to clobber after ICU52 roll.'
19 print 'Landmines test.'
20 print 'Activating MSVS 2013.'
21 print 'Revert activation of MSVS 2013.'
22 print 'Activating MSVS 2013 again.'
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000023 print 'Clobber after ICU roll.'
24 print 'Moar clobbering...'
25 print 'Remove build/android.gypi'
26 print 'Cleanup after windows ninja switch attempt.'
27 print 'Switching to pinned msvs toolchain.'
28 print 'Clobbering to hopefully resolve problem with mksnapshot'
Ben Murdochda12d292016-06-02 14:46:10 +010029 print 'Clobber after ICU roll.'
Ben Murdoch61f157c2016-09-16 13:49:30 +010030 print 'Clobber after Android NDK update.'
Ben Murdochb8a8cc12014-11-26 15:28:44 +000031 return 0
32
33
34if __name__ == '__main__':
35 sys.exit(main())