2014-07-22 15:06:18 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# Copyright 2014 the V8 project authors. All rights reserved.
|
|
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
|
|
# found in the LICENSE file.
|
|
|
|
|
|
|
|
"""
|
|
|
|
This file emits the list of reasons why a particular build needs to be clobbered
|
|
|
|
(or a list of 'landmines').
|
|
|
|
"""
|
|
|
|
|
|
|
|
import sys
|
|
|
|
|
|
|
|
|
|
|
|
def main():
|
|
|
|
"""
|
|
|
|
ALL LANDMINES ARE EMITTED FROM HERE.
|
|
|
|
"""
|
2014-07-22 15:09:58 +00:00
|
|
|
print 'Need to clobber after ICU52 roll.'
|
2014-07-23 13:12:00 +00:00
|
|
|
print 'Landmines test.'
|
2014-08-11 16:10:29 +00:00
|
|
|
print 'Activating MSVS 2013.'
|
2014-08-11 18:28:54 +00:00
|
|
|
print 'Revert activation of MSVS 2013.'
|
2014-08-26 07:00:44 +00:00
|
|
|
print 'Activating MSVS 2013 again.'
|
2015-03-04 19:45:30 +00:00
|
|
|
print 'Clobber after ICU roll.'
|
2015-06-09 20:26:32 +00:00
|
|
|
print 'Moar clobbering...'
|
2015-06-22 13:17:18 +00:00
|
|
|
print 'Remove build/android.gypi'
|
2015-07-09 14:03:25 +00:00
|
|
|
print 'Cleanup after windows ninja switch attempt.'
|
2015-11-02 10:40:16 +00:00
|
|
|
print 'Switching to pinned msvs toolchain.'
|
2014-07-22 15:06:18 +00:00
|
|
|
return 0
|
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
sys.exit(main())
|