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', | |
429 ], | 428 ], |
430 'test_generators': [ | 429 'test_generators': [ |
431 steps.generate_gtest, | 430 steps.generate_gtest, |
432 steps.generate_script, | 431 steps.generate_script, |
433 steps.generate_isolated_script, | 432 steps.generate_isolated_script, |
434 ], | 433 ], |
435 'testing': { | 434 'testing': { |
436 'platform': 'win', | 435 'platform': 'win', |
437 }, | 436 }, |
438 }, | 437 }, |
(...skipping 1691 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2130 'compile_targets': [ | 2129 'compile_targets': [ |
2131 'chrome', | 2130 'chrome', |
2132 ], | 2131 ], |
2133 'enable_swarming': True, | 2132 'enable_swarming': True, |
2134 'testing': { | 2133 'testing': { |
2135 'platform': 'win', | 2134 'platform': 'win', |
2136 }, | 2135 }, |
2137 }, | 2136 }, |
2138 }, | 2137 }, |
2139 } | 2138 } |
OLD | NEW |