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

Side by Side Diff: scripts/slave/recipe_modules/chromium_tests/chromium_chrome.py

Issue 1371913005: chromium_tests: add explicit compile targets to bots that need them (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 5 years, 2 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 | Annotate | Revision Log
OLDNEW
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 SPEC = { 5 SPEC = {
6 'builders': { 6 'builders': {
7 'Google Chrome ChromeOS': { 7 'Google Chrome ChromeOS': {
8 'chromium_config': 'chromium_official', 8 'chromium_config': 'chromium_official',
9 'chromium_apply_config': ['chromeos'], 9 'chromium_apply_config': ['chromeos'],
10 'gclient_config': 'chromium', 10 'gclient_config': 'chromium',
(...skipping 13 matching lines...) Expand all
24 }, 24 },
25 }, 25 },
26 'Google Chrome Linux': { 26 'Google Chrome Linux': {
27 'chromium_config': 'chromium_official', 27 'chromium_config': 'chromium_official',
28 'gclient_config': 'chromium', 28 'gclient_config': 'chromium',
29 'gclient_apply_config': ['chrome_internal'], 29 'gclient_apply_config': ['chrome_internal'],
30 'chromium_config_kwargs': { 30 'chromium_config_kwargs': {
31 'BUILD_CONFIG': 'Release', 31 'BUILD_CONFIG': 'Release',
32 'TARGET_BITS': 32, 32 'TARGET_BITS': 32,
33 }, 33 },
34 'compile_targets': [
35 'linux_packages_all'
36 ],
34 'testing': { 37 'testing': {
35 'platform': 'linux', 38 'platform': 'linux',
36 }, 39 },
37 }, 40 },
38 'Google Chrome Linux x64': { 41 'Google Chrome Linux x64': {
39 'chromium_config': 'chromium_official', 42 'chromium_config': 'chromium_official',
40 'gclient_config': 'chromium', 43 'gclient_config': 'chromium',
41 'gclient_apply_config': ['chrome_internal'], 44 'gclient_apply_config': ['chrome_internal'],
42 'chromium_config_kwargs': { 45 'chromium_config_kwargs': {
43 'BUILD_CONFIG': 'Release', 46 'BUILD_CONFIG': 'Release',
44 'TARGET_BITS': 64, 47 'TARGET_BITS': 64,
45 }, 48 },
49 'compile_targets': [
50 'linux_packages_all'
51 ],
46 'testing': { 52 'testing': {
47 'platform': 'linux', 53 'platform': 'linux',
48 }, 54 },
49 }, 55 },
50 'Google Chrome Mac': { 56 'Google Chrome Mac': {
51 'chromium_config': 'chromium_official', 57 'chromium_config': 'chromium_official',
52 'gclient_config': 'chromium', 58 'gclient_config': 'chromium',
53 'gclient_apply_config': ['chrome_internal'], 59 'gclient_apply_config': ['chrome_internal'],
54 'chromium_config_kwargs': { 60 'chromium_config_kwargs': {
55 'BUILD_CONFIG': 'Release', 61 'BUILD_CONFIG': 'Release',
56 'TARGET_BITS': 64, 62 'TARGET_BITS': 64,
57 }, 63 },
64 'compile_targets': [
65 'chrome',
66 ],
58 'testing': { 67 'testing': {
59 'platform': 'mac', 68 'platform': 'mac',
60 }, 69 },
61 }, 70 },
62 'Google Chrome Win': { 71 'Google Chrome Win': {
63 'chromium_config': 'chromium_official', 72 'chromium_config': 'chromium_official',
64 'gclient_config': 'chromium', 73 'gclient_config': 'chromium',
65 'gclient_apply_config': ['chrome_internal'], 74 'gclient_apply_config': ['chrome_internal'],
66 'chromium_config_kwargs': { 75 'chromium_config_kwargs': {
67 'BUILD_CONFIG': 'Release', 76 'BUILD_CONFIG': 'Release',
68 'TARGET_BITS': 32, 77 'TARGET_BITS': 32,
69 }, 78 },
70 'testing': { 79 'testing': {
71 'platform': 'win', 80 'platform': 'win',
72 }, 81 },
73 }, 82 },
74 }, 83 },
75 } 84 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698