Chromium Code Reviews| 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 SPEC = { | 7 SPEC = { |
| 8 'settings': { | 8 'settings': { |
| 9 'build_gs_bucket': 'chromium-v8', | 9 'build_gs_bucket': 'chromium-v8', |
| 10 }, | 10 }, |
| (...skipping 11 matching lines...) Expand all Loading... | |
| 22 'BUILD_CONFIG': 'Debug', | 22 'BUILD_CONFIG': 'Debug', |
| 23 'TARGET_BITS': 64, | 23 'TARGET_BITS': 64, |
| 24 }, | 24 }, |
| 25 'bot_type': 'builder', | 25 'bot_type': 'builder', |
| 26 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'}, | 26 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'}, |
| 27 'testing': { | 27 'testing': { |
| 28 'platform': 'linux', | 28 'platform': 'linux', |
| 29 'test_spec_file': 'chromium.linux.json', | 29 'test_spec_file': 'chromium.linux.json', |
| 30 }, | 30 }, |
| 31 }, | 31 }, |
| 32 'V8 Linux GN': { | |
|
Paweł Hajdan Jr.
2016/03/19 00:56:28
Don't we need to re-generate recipe expectations f
Dirk Pranke
2016/03/19 01:00:54
Whoops, good catch. I did generate them but forgot
| |
| 33 'chromium_config': 'chromium', | |
| 34 'gclient_config': 'chromium', | |
| 35 'gclient_apply_config': [ | |
| 36 'v8_bleeding_edge_git', | |
| 37 'chromium_lkcr', | |
| 38 'show_v8_revision', | |
| 39 ], | |
| 40 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], | |
| 41 'chromium_config_kwargs': { | |
| 42 'BUILD_CONFIG': 'Debug', | |
| 43 'TARGET_BITS': 64, | |
| 44 }, | |
| 45 'bot_type': 'builder', | |
| 46 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'}, | |
| 47 'testing': { | |
| 48 'platform': 'linux', | |
| 49 'test_spec_file': 'chromium.linux.json', | |
| 50 }, | |
| 51 }, | |
| 52 'V8 Android GN (dbg)': { | |
| 53 'chromium_config': 'chromium', | |
| 54 'gclient_config': 'chromium', | |
| 55 'gclient_apply_config': [ | |
| 56 'v8_bleeding_edge_git', | |
| 57 'chromium_lkcr', | |
| 58 'show_v8_revision', | |
| 59 ], | |
| 60 'chromium_apply_config': ['mb', 'ninja_confirm_noop'], | |
| 61 'chromium_config_kwargs': { | |
| 62 'BUILD_CONFIG': 'Debug', | |
| 63 'TARGET_BITS': 64, | |
| 64 }, | |
| 65 'bot_type': 'builder', | |
| 66 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'}, | |
| 67 'testing': { | |
| 68 'platform': 'linux', | |
| 69 'test_spec_file': 'chromium.linux.json', | |
| 70 }, | |
| 71 }, | |
| 32 # Bot names should be in sync with chromium.linux's names to retrieve the | 72 # Bot names should be in sync with chromium.linux's names to retrieve the |
| 33 # same test configuration files. | 73 # same test configuration files. |
| 34 'Linux Tests (dbg)(1)': { | 74 'Linux Tests (dbg)(1)': { |
| 35 'chromium_config': 'chromium', | 75 'chromium_config': 'chromium', |
| 36 'gclient_config': 'chromium', | 76 'gclient_config': 'chromium', |
| 37 'gclient_apply_config': [ | 77 'gclient_apply_config': [ |
| 38 'v8_bleeding_edge_git', | 78 'v8_bleeding_edge_git', |
| 39 'chromium_lkcr', | 79 'chromium_lkcr', |
| 40 'show_v8_revision', | 80 'show_v8_revision', |
| 41 ], | 81 ], |
| (...skipping 237 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 279 'cf_gs_acl': 'public-read', | 319 'cf_gs_acl': 'public-read', |
| 280 'cf_archive_name': 'syzyasan', | 320 'cf_archive_name': 'syzyasan', |
| 281 'cf_revision_dir': 'v8', | 321 'cf_revision_dir': 'v8', |
| 282 'fixed_staging_dir': True, | 322 'fixed_staging_dir': True, |
| 283 'compile_targets': ['chromium_builder_asan'], | 323 'compile_targets': ['chromium_builder_asan'], |
| 284 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'}, | 324 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'}, |
| 285 'testing': {'platform': 'win'}, | 325 'testing': {'platform': 'win'}, |
| 286 }, | 326 }, |
| 287 }, | 327 }, |
| 288 } | 328 } |
| OLD | NEW |