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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 SPEC = {
6 'builders': {
7 'Google Chrome ChromeOS': {
8 'chromium_config': 'chromium_official',
9 'chromium_apply_config': ['chromeos'],
10 'gclient_config': 'chromium',
11 'gclient_apply_config': ['chrome_internal'],
12 'chromium_config_kwargs': {
13 'BUILD_CONFIG': 'Release',
14 'TARGET_BITS': 64,
15 },
16 'compile_targets': [
17 'chrome',
18 'chrome_sandbox',
19 'linux_symbols',
20 'symupload'
21 ],
22 'testing': {
23 'platform': 'linux',
24 },
25 },
26 'Google Chrome Linux': {
27 'chromium_config': 'chromium_official',
28 'gclient_config': 'chromium',
29 'gclient_apply_config': ['chrome_internal'],
30 'chromium_config_kwargs': {
31 'BUILD_CONFIG': 'Release',
32 'TARGET_BITS': 32,
33 },
34 'testing': {
35 'platform': 'linux',
36 },
37 },
38 'Google Chrome Linux x64': {
39 'chromium_config': 'chromium_official',
40 'gclient_config': 'chromium',
41 'gclient_apply_config': ['chrome_internal'],
42 'chromium_config_kwargs': {
43 'BUILD_CONFIG': 'Release',
44 'TARGET_BITS': 64,
45 },
46 'testing': {
47 'platform': 'linux',
48 },
49 },
50 'Google Chrome Mac': {
51 'chromium_config': 'chromium_official',
52 'gclient_config': 'chromium',
53 'gclient_apply_config': ['chrome_internal'],
54 'chromium_config_kwargs': {
55 'BUILD_CONFIG': 'Release',
56 'TARGET_BITS': 64,
57 },
58 'testing': {
59 'platform': 'mac',
60 },
61 },
62 'Google Chrome Win': {
63 'chromium_config': 'chromium_official',
64 'gclient_config': 'chromium',
65 'gclient_apply_config': ['chrome_internal'],
66 'chromium_config_kwargs': {
67 'BUILD_CONFIG': 'Release',
68 'TARGET_BITS': 32,
69 },
70 'testing': {
71 'platform': 'win',
72 },
73 },
74 },
75 }
OLDNEW
« 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