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 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
235 'client.nacl.sdk', | 235 'client.nacl.sdk', |
236 'client.nacl.sdk.mono', | 236 'client.nacl.sdk.mono', |
237 'client.nacl.toolchain', | 237 'client.nacl.toolchain', |
238 'client.skia', | 238 'client.skia', |
239 'client.v8', | 239 'client.v8', |
240 'client.v8.branches', | 240 'client.v8.branches', |
241 'client.webrtc', | 241 'client.webrtc', |
242 'client.webrtc.fyi', | 242 'client.webrtc.fyi', |
243 'tryserver.blink', | 243 'tryserver.blink', |
244 'tryserver.client.mojo', | 244 'tryserver.client.mojo', |
245 'tryserver.chromium.gpu', | |
246 'tryserver.chromium.linux', | 245 'tryserver.chromium.linux', |
247 'tryserver.chromium.mac', | 246 'tryserver.chromium.mac', |
248 'tryserver.chromium.perf', | 247 'tryserver.chromium.perf', |
249 'tryserver.chromium.win', | 248 'tryserver.chromium.win', |
250 'tryserver.nacl', | 249 'tryserver.nacl', |
251 'tryserver.v8', | 250 'tryserver.v8', |
252 'tryserver.webrtc', | 251 'tryserver.webrtc', |
253 'chromium.perf.fyi', | 252 'chromium.perf.fyi', |
254 ] | 253 ] |
255 ENABLED_MASTERS += internal_data.get('ENABLED_MASTERS', []) | 254 ENABLED_MASTERS += internal_data.get('ENABLED_MASTERS', []) |
(...skipping 1400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1656 except Exception: | 1655 except Exception: |
1657 # Unexpected failure. | 1656 # Unexpected failure. |
1658 emit_flag(options.flag_file) | 1657 emit_flag(options.flag_file) |
1659 raise | 1658 raise |
1660 else: | 1659 else: |
1661 emit_flag(options.flag_file) | 1660 emit_flag(options.flag_file) |
1662 | 1661 |
1663 | 1662 |
1664 if __name__ == '__main__': | 1663 if __name__ == '__main__': |
1665 sys.exit(main()) | 1664 sys.exit(main()) |
OLD | NEW |