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

Unified Diff: scripts/slave/recipe_modules/chromium/chromium_chrome.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_chrome.py
diff --git a/scripts/slave/recipe_modules/chromium/chromium_chrome.py b/scripts/slave/recipe_modules/chromium/chromium_chrome.py
deleted file mode 100644
index b206ea925cbcfb4d05189f7bd789fe8bd8410581..0000000000000000000000000000000000000000
--- a/scripts/slave/recipe_modules/chromium/chromium_chrome.py
+++ /dev/null
@@ -1,75 +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.
-
-SPEC = {
- 'builders': {
- 'Google Chrome ChromeOS': {
- 'chromium_config': 'chromium_official',
- 'chromium_apply_config': ['chromeos'],
- 'gclient_config': 'chromium',
- 'gclient_apply_config': ['chrome_internal'],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'compile_targets': [
- 'chrome',
- 'chrome_sandbox',
- 'linux_symbols',
- 'symupload'
- ],
- 'testing': {
- 'platform': 'linux',
- },
- },
- 'Google Chrome Linux': {
- 'chromium_config': 'chromium_official',
- 'gclient_config': 'chromium',
- 'gclient_apply_config': ['chrome_internal'],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 32,
- },
- 'testing': {
- 'platform': 'linux',
- },
- },
- 'Google Chrome Linux x64': {
- 'chromium_config': 'chromium_official',
- 'gclient_config': 'chromium',
- 'gclient_apply_config': ['chrome_internal'],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'testing': {
- 'platform': 'linux',
- },
- },
- 'Google Chrome Mac': {
- 'chromium_config': 'chromium_official',
- 'gclient_config': 'chromium',
- 'gclient_apply_config': ['chrome_internal'],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 64,
- },
- 'testing': {
- 'platform': 'mac',
- },
- },
- 'Google Chrome Win': {
- 'chromium_config': 'chromium_official',
- 'gclient_config': 'chromium',
- 'gclient_apply_config': ['chrome_internal'],
- 'chromium_config_kwargs': {
- 'BUILD_CONFIG': 'Release',
- 'TARGET_BITS': 32,
- },
- 'testing': {
- 'platform': 'win',
- },
- },
- },
-}
« no previous file with comments | « scripts/slave/recipe_modules/chromium/builders.py ('k') | scripts/slave/recipe_modules/chromium/chromium_chromiumos.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698