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

Unified Diff: scripts/slave/recipe_modules/chromium/client_v8_fyi.py

Issue 1185693002: Move builders.py and steps.py to chromium_tests. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Address review comments. Created 5 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: scripts/slave/recipe_modules/chromium/client_v8_fyi.py
diff --git a/scripts/slave/recipe_modules/chromium/client_v8_fyi.py b/scripts/slave/recipe_modules/chromium/client_v8_fyi.py
deleted file mode 100644
index 98679de35250adb3de9d3ce2e49b1259fd06e88d..0000000000000000000000000000000000000000
--- a/scripts/slave/recipe_modules/chromium/client_v8_fyi.py
+++ /dev/null
@@ -1,322 +0,0 @@
-# Copyright 2014 The Chromium Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-from . import steps
-
-SPEC = {
- 'settings': {
- 'build_gs_bucket': 'chromium-v8',
- },
- 'builders': {
- 'Linux Debug Builder': {
- 'chromium_config': 'chromium',
- 'gclient_config': 'chromium',
- 'gclient_apply_config': [
- 'v8_bleeding_edge_git',
- 'chromium_lkcr',
- 'show_v8_revision',
- ],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Debug',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'builder',
- 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'},
- 'testing': {
- 'platform': 'linux',
- 'test_spec_file': 'chromium.linux.json',
- },
- },
- # Bot names should be in sync with chromium.linux's names to retrieve the
- # same test configuration files.
- 'Linux Tests (dbg)(1)': {
- 'chromium_config': 'chromium',
- 'gclient_config': 'chromium',
- 'gclient_apply_config': [
- 'v8_bleeding_edge_git',
- 'chromium_lkcr',
- 'show_v8_revision',
- ],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Debug',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'tester',
- 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'},
- 'test_generators': [
- steps.generate_gtest,
- steps.generate_script,
- ],
- 'parent_buildername': 'Linux Debug Builder',
- 'testing': {
- 'platform': 'linux',
- 'test_spec_file': 'chromium.linux.json',
- },
- },
- 'Linux ASAN Builder': {
- 'chromium_config': 'chromium_linux_asan',
- 'gclient_config': 'chromium',
- 'gclient_apply_config': [
- 'v8_bleeding_edge_git',
- 'chromium_lkcr',
- 'show_v8_revision',
- ],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'builder',
- 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'},
- 'testing': {
- 'platform': 'linux',
- 'test_spec_file': 'chromium.memory.json',
- },
- },
- 'Linux ASan LSan Tests (1)': {
- 'chromium_config': 'chromium_linux_asan',
- 'gclient_config': 'chromium',
- 'gclient_apply_config': [
- 'v8_bleeding_edge_git',
- 'chromium_lkcr',
- 'show_v8_revision',
- ],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'tester',
- 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'},
- 'test_generators': [
- steps.generate_gtest,
- steps.generate_script,
- ],
- 'parent_buildername': 'Linux ASAN Builder',
- 'testing': {
- 'platform': 'linux',
- 'test_spec_file': 'chromium.memory.json',
- },
- },
- 'Chrome Linux Perf': {
- 'disable_tests': True,
- 'chromium_config': 'chromium_official',
- 'gclient_config': 'chromium',
- 'gclient_apply_config': [
- 'chrome_internal',
- 'perf',
- 'v8_bleeding_edge_git',
- 'chromium_lkcr',
- 'show_v8_revision',
- ],
- 'chromium_apply_config': ['chromium_perf'],
- 'bot_type': 'builder_tester',
- 'compile_targets': [
- 'chromium_builder_perf',
- ],
- 'tests': [
- steps.DynamicPerfTests(
- 'release',
- 'chromium-rel-linux-v8', 0, 1),
- ],
- 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'},
- 'testing': {
- 'platform': 'linux',
- },
- },
- 'Chrome Win7 Perf': {
- 'disable_tests': True,
- 'chromium_config': 'chromium_official',
- 'gclient_config': 'chromium',
- 'gclient_apply_config': [
- 'chrome_internal',
- 'perf',
- 'v8_bleeding_edge_git',
- 'chromium_lkcr',
- 'show_v8_revision',
- ],
- 'chromium_apply_config': ['chromium_perf'],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 32,
- },
- 'bot_type': 'builder_tester',
- 'compile_targets': [
- 'chromium_builder_perf',
- ],
- 'tests': [
- steps.DynamicPerfTests(
- 'release',
- 'chromium-rel-win7-dual-v8', 0, 1),
- ],
- 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'},
- 'testing': {
- 'platform': 'win',
- },
- },
- 'Chrome Mac10.9 Perf': {
- 'disable_tests': True,
- 'chromium_config': 'chromium',
- 'gclient_config': 'chromium',
- 'gclient_apply_config': [
- 'perf',
- 'v8_bleeding_edge_git',
- 'chromium_lkcr',
- 'show_v8_revision',
- ],
- 'chromium_apply_config': ['chromium_perf'],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'builder_tester',
- 'compile_targets': [
- 'chromium_builder_perf',
- ],
- 'tests': [
- steps.DynamicPerfTests(
- 'release',
- 'chromium-rel-mac9-v8', 0, 1),
- ],
- 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'},
- 'testing': {
- 'platform': 'mac',
- },
- },
- # Clusterfuzz builders.
- 'Chromium ASAN (symbolized)': {
- 'chromium_config': 'chromium_linux_asan',
- 'gclient_config': 'chromium',
- 'chromium_apply_config': [
- 'asan_symbolized',
- 'chromium_asan_default_targets',
- 'clobber',
- 'sanitizer_coverage',
- 'v8_verify_heap',
- ],
- 'gclient_apply_config': [
- 'v8_bleeding_edge_git',
- 'chromium_lkgr',
- 'show_v8_revision',
- ],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'builder',
- 'cf_archive_build': True,
- 'cf_gs_bucket': 'v8-asan',
- 'cf_gs_acl': 'public-read',
- 'cf_archive_name': 'asan-symbolized',
- 'cf_revision_dir': 'v8',
- 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'},
- 'testing': {'platform': 'linux'},
- },
- 'Chromium ASAN - debug': {
- 'chromium_config': 'chromium_linux_asan',
- 'gclient_config': 'chromium',
- 'chromium_apply_config': [
- 'chromium_asan_default_targets',
- 'clobber',
- 'sanitizer_coverage',
- 'v8_optimize_medium',
- ],
- 'gclient_apply_config': [
- 'v8_bleeding_edge_git',
- 'chromium_lkgr',
- 'show_v8_revision',
- ],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Debug',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'builder',
- 'cf_archive_build': True,
- 'cf_gs_bucket': 'v8-asan',
- 'cf_gs_acl': 'public-read',
- 'cf_archive_name': 'asan',
- 'cf_revision_dir': 'v8',
- 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'},
- 'testing': {'platform': 'linux'},
- },
- 'Chromium ASAN arm64 - debug': {
- 'chromium_config': 'chromium_linux_asan',
- 'gclient_config': 'chromium',
- 'chromium_apply_config': [
- 'clobber',
- 'sanitizer_coverage',
- 'v8_arch_arm',
- 'v8_d8_default_target',
- 'v8_optimize_medium',
- ],
- 'gclient_apply_config': [
- 'v8_bleeding_edge_git',
- 'chromium_lkgr',
- 'show_v8_revision',
- ],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Debug',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'builder',
- 'cf_archive_build': True,
- 'cf_gs_bucket': 'v8-asan',
- 'cf_gs_acl': 'public-read',
- 'cf_archive_name': 'arm64-asan',
- 'cf_revision_dir': 'v8',
- 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'},
- 'testing': {'platform': 'linux'},
- },
- 'Chromium ASAN mipsel - debug': {
- 'chromium_config': 'chromium_linux_asan',
- 'gclient_config': 'chromium',
- 'chromium_apply_config': [
- 'clobber',
- 'sanitizer_coverage',
- 'v8_arch_mipsel',
- 'v8_d8_default_target',
- 'v8_optimize_medium',
- ],
- 'gclient_apply_config': [
- 'v8_bleeding_edge_git',
- 'chromium_lkgr',
- 'show_v8_revision',
- ],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Debug',
- 'TARGET_BITS': 32,
- },
- 'bot_type': 'builder',
- 'cf_archive_build': True,
- 'cf_gs_bucket': 'v8-asan',
- 'cf_gs_acl': 'public-read',
- 'cf_archive_name': 'mipsel-asan',
- 'cf_revision_dir': 'v8',
- 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'},
- 'testing': {'platform': 'linux'},
- },
- 'Chromium Win SyzyASAN': {
- 'chromium_config': 'chromium_no_goma',
- 'gclient_config': 'chromium',
- 'chromium_apply_config': ['syzyasan', 'clobber'],
- 'gclient_apply_config': [
- 'v8_bleeding_edge_git',
- 'chromium_lkgr',
- 'show_v8_revision',
- ],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 32,
- },
- 'bot_type': 'builder',
- 'cf_archive_build': True,
- 'cf_gs_bucket': 'v8-asan',
- 'cf_gs_acl': 'public-read',
- 'cf_archive_name': 'syzyasan',
- 'cf_revision_dir': 'v8',
- 'fixed_staging_dir': True,
- 'compile_targets': ['chromium_builder_asan'],
- 'set_component_rev': {'name': 'src/v8', 'rev_str': '%s'},
- 'testing': {'platform': 'win'},
- },
- },
-}
« no previous file with comments | « scripts/slave/recipe_modules/chromium/client_skia.py ('k') | scripts/slave/recipe_modules/chromium/steps.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698