Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1740)

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py

Issue 1577983006: Support official Chrome builders. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 ], 361 ],
362 'test_generators': [ 362 'test_generators': [
363 steps.generate_gtest, 363 steps.generate_gtest,
364 steps.generate_script, 364 steps.generate_script,
365 steps.generate_isolated_script, 365 steps.generate_isolated_script,
366 ], 366 ],
367 'testing': { 367 'testing': {
368 'platform': 'linux', 368 'platform': 'linux',
369 }, 369 },
370 }, 370 },
371 'ChromePracticeFullTester': {
Sergiy Byelozyorov 2016/01/12 09:31:04 Why was this added? Is this a real config or just
Ken Russell (switch to Gerrit) 2016/01/12 18:29:07 It's a testing config used to get to 100% code cov
372 'chromium_config': 'chromium',
373 'chromium_apply_config': ['ninja_confirm_noop'],
374 'gclient_config': 'chromium',
375 'chromium_config_kwargs': {
376 'BUILD_CONFIG': 'Release',
377 'TARGET_BITS': 64,
378 },
379 'bot_type': 'builder_tester',
380 'compile_targets': [
381 'chromium_swarm_tests',
382 ],
383 'tests': [
384 steps.GTestTest('base_unittests'),
385 ],
386 'test_generators': [
387 steps.generate_gtest,
388 steps.generate_script,
389 steps.generate_isolated_script,
390 ],
391 # The official builders specify the test_spec here as opposed to
392 # reading it from a file.
393 'test_spec': {
Sergiy Byelozyorov 2016/01/12 09:41:34 nit: keep } on the same line, i.e. 'test_spec': {}
Ken Russell (switch to Gerrit) 2016/01/12 18:29:07 I'm going to leave this as is. It's the same way i
394 },
395 'testing': {
396 'platform': 'linux',
397 },
398 },
371 'ChromiumPractice': { 399 'ChromiumPractice': {
372 'chromium_config': 'chromium', 400 'chromium_config': 'chromium',
373 'gclient_config': 'blink_merged', 401 'gclient_config': 'blink_merged',
374 'chromium_config_kwargs': { 402 'chromium_config_kwargs': {
375 'BUILD_CONFIG': 'Release', 403 'BUILD_CONFIG': 'Release',
376 'TARGET_BITS': 64, 404 'TARGET_BITS': 64,
377 }, 405 },
378 'bot_type': 'builder', 406 'bot_type': 'builder',
379 'testing': { 407 'testing': {
380 'platform': 'linux', 408 'platform': 'linux',
(...skipping 1639 matching lines...) Expand 10 before | Expand all | Expand 10 after
2020 'compile_targets': [ 2048 'compile_targets': [
2021 'chrome', 2049 'chrome',
2022 ], 2050 ],
2023 'enable_swarming': True, 2051 'enable_swarming': True,
2024 'testing': { 2052 'testing': {
2025 'platform': 'win', 2053 'platform': 'win',
2026 }, 2054 },
2027 }, 2055 },
2028 }, 2056 },
2029 } 2057 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698