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

Unified Diff: scripts/slave/recipe_modules/chromium/chromium_memory.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/chromium_memory.py
diff --git a/scripts/slave/recipe_modules/chromium/chromium_memory.py b/scripts/slave/recipe_modules/chromium/chromium_memory.py
deleted file mode 100644
index ffba5445027de9ec1d5692ae85ea3f1ba13af490..0000000000000000000000000000000000000000
--- a/scripts/slave/recipe_modules/chromium/chromium_memory.py
+++ /dev/null
@@ -1,123 +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-memory-archive',
- },
- 'builders': {
- 'Linux ASan LSan Builder': {
- 'chromium_config': 'chromium_linux_asan',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- # This doesn't affect the build, but ensures that trybots get the right
- # runtime flags.
- 'chromium_apply_config': ['lsan'],
- 'bot_type': 'builder',
- 'testing': {'platform': 'linux'},
- 'enable_swarming': True,
- 'use_isolate': True,
- },
- 'Linux ASan LSan Tests (1)': {
- 'chromium_config': 'chromium_linux_asan',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- # Enable LSan at runtime. This disables the sandbox in browser tests.
- # http://crbug.com/336218
- 'chromium_apply_config': ['lsan'],
- 'bot_type': 'tester',
- 'test_generators': [
- steps.generate_gtest,
- steps.generate_script,
- ],
- 'parent_buildername': 'Linux ASan LSan Builder',
- 'testing': {'platform': 'linux'},
- 'enable_swarming': True,
- },
- 'Linux ASan Tests (sandboxed)': {
- 'chromium_config': 'chromium_linux_asan',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- # We want to test ASan+sandbox as well, so run browser tests again, this
- # time with LSan disabled.
- 'bot_type': 'tester',
- 'test_generators': [
- steps.generate_gtest,
- steps.generate_script,
- ],
- 'parent_buildername': 'Linux ASan LSan Builder',
- 'testing': {'platform': 'linux'},
- 'enable_swarming': True,
- },
- 'Mac ASan 64 Builder': {
- 'chromium_config': 'chromium_mac_asan',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'builder',
- 'testing': {'platform': 'mac'},
- 'enable_swarming': True,
- 'use_isolate': True,
- },
- 'Mac ASan 64 Tests (1)': {
- 'chromium_config': 'chromium_mac_asan',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'bot_type': 'tester',
- 'test_generators': [
- steps.generate_gtest,
- steps.generate_script,
- ],
- 'parent_buildername': 'Mac ASan 64 Builder',
- 'testing': {'platform': 'mac'},
- 'enable_swarming': True,
- },
- 'Linux Chromium OS ASan LSan Builder': {
- 'chromium_config': 'chromium_chromiumos_asan',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'chromium_apply_config': ['lsan'],
- 'bot_type': 'builder',
- 'testing': {'platform': 'linux'},
- 'enable_swarming': True,
- 'use_isolate': True,
- },
- 'Linux Chromium OS ASan LSan Tests (1)': {
- 'chromium_config': 'chromium_chromiumos_asan',
- 'gclient_config': 'chromium',
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'chromium_apply_config': ['lsan'],
- 'test_generators': [
- steps.generate_gtest,
- steps.generate_script,
- ],
- 'parent_buildername': 'Linux Chromium OS ASan LSan Builder',
- 'bot_type': 'tester',
- 'testing': {'platform': 'linux'},
- 'enable_swarming': True,
- },
- },
-}
« no previous file with comments | « scripts/slave/recipe_modules/chromium/chromium_mac.py ('k') | scripts/slave/recipe_modules/chromium/chromium_memory_fyi.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698