| OLD | NEW | 
|   1 #!/usr/bin/env python |   1 #!/usr/bin/env python | 
|   2 # Copyright 2014 the V8 project authors. All rights reserved. |   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 |   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  | 
|  11 import sys |  11 import sys | 
|  12  |  12  | 
|  13  |  13  | 
|  14 def main(): |  14 def main(): | 
|  15   """ |  15   """ | 
|  16   ALL LANDMINES ARE EMITTED FROM HERE. |  16   ALL LANDMINES ARE EMITTED FROM HERE. | 
|  17   """ |  17   """ | 
|  18   print 'Need to clobber after ICU52 roll.' |  18   print 'Need to clobber after ICU52 roll.' | 
|  19   print 'Landmines test.' |  19   print 'Landmines test.' | 
|  20   print 'Activating MSVS 2013.' |  20   print 'Activating MSVS 2013.' | 
|  21   print 'Revert activation of MSVS 2013.' |  21   print 'Revert activation of MSVS 2013.' | 
|  22   print 'Activating MSVS 2013 again.' |  22   print 'Activating MSVS 2013 again.' | 
|  23   print 'Clobber after ICU roll.' |  23   print 'Clobber after ICU roll.' | 
 |  24   print 'Clobber after change to src/messages.h.' | 
|  24   return 0 |  25   return 0 | 
|  25  |  26  | 
|  26  |  27  | 
|  27 if __name__ == '__main__': |  28 if __name__ == '__main__': | 
|  28   sys.exit(main()) |  29   sys.exit(main()) | 
| OLD | NEW |