| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 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 # TODO(hinoka): Use logging. | 6 # TODO(hinoka): Use logging. |
| 7 | 7 |
| 8 import cStringIO | 8 import cStringIO |
| 9 import codecs | 9 import codecs |
| 10 import collections | 10 import collections |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 256 'client.nacl.ports', | 256 'client.nacl.ports', |
| 257 'client.nacl.sdk', | 257 'client.nacl.sdk', |
| 258 'client.nacl.toolchain', | 258 'client.nacl.toolchain', |
| 259 'client.skia', | 259 'client.skia', |
| 260 'client.skia.fyi', | 260 'client.skia.fyi', |
| 261 'client.v8', | 261 'client.v8', |
| 262 'client.v8.branches', | 262 'client.v8.branches', |
| 263 'client.v8.fyi', | 263 'client.v8.fyi', |
| 264 'client.webrtc', | 264 'client.webrtc', |
| 265 'client.webrtc.fyi', | 265 'client.webrtc.fyi', |
| 266 'goma', |
| 266 'tryserver.blink', | 267 'tryserver.blink', |
| 267 'tryserver.client.catapult', | 268 'tryserver.client.catapult', |
| 268 'tryserver.client.mojo', | 269 'tryserver.client.mojo', |
| 269 'tryserver.chromium.angle', | 270 'tryserver.chromium.angle', |
| 270 'tryserver.chromium.linux', | 271 'tryserver.chromium.linux', |
| 271 'tryserver.chromium.mac', | 272 'tryserver.chromium.mac', |
| 272 'tryserver.chromium.perf', | 273 'tryserver.chromium.perf', |
| 273 'tryserver.chromium.win', | 274 'tryserver.chromium.win', |
| 274 'tryserver.infra', | 275 'tryserver.infra', |
| 275 'tryserver.nacl', | 276 'tryserver.nacl', |
| (...skipping 1426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1702 except Exception: | 1703 except Exception: |
| 1703 # Unexpected failure. | 1704 # Unexpected failure. |
| 1704 emit_flag(options.flag_file) | 1705 emit_flag(options.flag_file) |
| 1705 raise | 1706 raise |
| 1706 else: | 1707 else: |
| 1707 emit_flag(options.flag_file) | 1708 emit_flag(options.flag_file) |
| 1708 | 1709 |
| 1709 | 1710 |
| 1710 if __name__ == '__main__': | 1711 if __name__ == '__main__': |
| 1711 sys.exit(main()) | 1712 sys.exit(main()) |
| OLD | NEW |