OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 from . import steps | 5 from . import steps |
6 | 6 |
7 RESULTS_URL = 'https://chromeperf.appspot.com' | 7 RESULTS_URL = 'https://chromeperf.appspot.com' |
8 | 8 |
9 SPEC = { | 9 SPEC = { |
10 'settings': { | 10 'settings': { |
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
418 'TARGET_PLATFORM': 'win', | 418 'TARGET_PLATFORM': 'win', |
419 'TARGET_BITS': 64, | 419 'TARGET_BITS': 64, |
420 }, | 420 }, |
421 'GYP_DEFINES': { | 421 'GYP_DEFINES': { |
422 'dcheck_always_on': '1', | 422 'dcheck_always_on': '1', |
423 }, | 423 }, |
424 'bot_type': 'builder_tester', | 424 'bot_type': 'builder_tester', |
425 'compile_targets': [ | 425 'compile_targets': [ |
426 'content_unittests', | 426 'content_unittests', |
427 'content_browsertests', | 427 'content_browsertests', |
| 428 'crash_service', |
428 ], | 429 ], |
429 'test_generators': [ | 430 'test_generators': [ |
430 steps.generate_gtest, | 431 steps.generate_gtest, |
431 steps.generate_script, | 432 steps.generate_script, |
432 steps.generate_isolated_script, | 433 steps.generate_isolated_script, |
433 ], | 434 ], |
434 'testing': { | 435 'testing': { |
435 'platform': 'win', | 436 'platform': 'win', |
436 }, | 437 }, |
437 }, | 438 }, |
(...skipping 1693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2131 'compile_targets': [ | 2132 'compile_targets': [ |
2132 'chrome', | 2133 'chrome', |
2133 ], | 2134 ], |
2134 'enable_swarming': True, | 2135 'enable_swarming': True, |
2135 'testing': { | 2136 'testing': { |
2136 'platform': 'win', | 2137 'platform': 'win', |
2137 }, | 2138 }, |
2138 }, | 2139 }, |
2139 }, | 2140 }, |
2140 } | 2141 } |
OLD | NEW |