| 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 | 9 |
| 10 KITCHEN_TEST_SPEC = { | 10 KITCHEN_TEST_SPEC = { |
| (...skipping 534 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 545 'TARGET_BITS': 64, | 545 'TARGET_BITS': 64, |
| 546 }, | 546 }, |
| 547 'GYP_DEFINES': { | 547 'GYP_DEFINES': { |
| 548 'dcheck_always_on': '1', | 548 'dcheck_always_on': '1', |
| 549 }, | 549 }, |
| 550 'bot_type': 'builder_tester', | 550 'bot_type': 'builder_tester', |
| 551 'compile_targets': [ | 551 'compile_targets': [ |
| 552 'content_unittests', | 552 'content_unittests', |
| 553 'content_browsertests', | 553 'content_browsertests', |
| 554 ], | 554 ], |
| 555 'tests': [ |
| 556 steps.BlinkTest(extra_args=[ |
| 557 '--additional-driver-flag', |
| 558 '--isolate-sites-for-testing=*.is', |
| 559 '--additional-expectations', |
| 560 'src\\third_party\\WebKit\\LayoutTests\\FlagExpectations\\isolate-exte
nsions', |
| 561 ]), |
| 562 ], |
| 555 'test_generators': [ | 563 'test_generators': [ |
| 556 steps.generate_gtest, | 564 steps.generate_gtest, |
| 557 steps.generate_script, | 565 steps.generate_script, |
| 558 steps.generate_isolated_script, | 566 steps.generate_isolated_script, |
| 559 ], | 567 ], |
| 560 'testing': { | 568 'testing': { |
| 561 'platform': 'win', | 569 'platform': 'win', |
| 562 }, | 570 }, |
| 563 }, | 571 }, |
| 564 'Browser Side Navigation Linux': { | 572 'Browser Side Navigation Linux': { |
| (...skipping 1659 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2224 'enable_swarming': True, | 2232 'enable_swarming': True, |
| 2225 'testing': { | 2233 'testing': { |
| 2226 'platform': 'win', | 2234 'platform': 'win', |
| 2227 }, | 2235 }, |
| 2228 }, | 2236 }, |
| 2229 | 2237 |
| 2230 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, | 2238 'Linux Kitchen (kitchen_run)': KITCHEN_TEST_SPEC, |
| 2231 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, | 2239 'Linux Kitchen (annotated_run)': KITCHEN_TEST_SPEC, |
| 2232 }, | 2240 }, |
| 2233 } | 2241 } |
| OLD | NEW |