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

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

Issue 1408863011: infra: Remove all references to the OSX 10.10 SDK. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Remove another newly added 10_10 sdk reference. Created 5 years, 1 month 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
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 from . import steps 5 from . import steps
6 6
7 SPEC = { 7 SPEC = {
8 'settings': { 8 'settings': {
9 'build_gs_bucket': 'chromium-fyi-archive', 9 'build_gs_bucket': 'chromium-fyi-archive',
10 }, 10 },
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 ], 75 ],
76 'parent_buildername': 'Linux Builder (dbg) (ANGLE)', 76 'parent_buildername': 'Linux Builder (dbg) (ANGLE)',
77 'testing': { 77 'testing': {
78 'platform': 'linux', 78 'platform': 'linux',
79 }, 79 },
80 'enable_swarming': True, 80 'enable_swarming': True,
81 }, 81 },
82 82
83 'Mac Builder (ANGLE)': { 83 'Mac Builder (ANGLE)': {
84 'chromium_config': 'chromium', 84 'chromium_config': 'chromium',
85 'chromium_apply_config': ['ninja_confirm_noop', 'chromium_mac_sdk_10_10'], 85 'chromium_apply_config': ['ninja_confirm_noop'],
86 'gclient_config': 'chromium_angle', 86 'gclient_config': 'chromium_angle',
87 'chromium_config_kwargs': { 87 'chromium_config_kwargs': {
88 'BUILD_CONFIG': 'Release', 88 'BUILD_CONFIG': 'Release',
89 'TARGET_BITS': 64, 89 'TARGET_BITS': 64,
90 }, 90 },
91 'bot_type': 'builder', 91 'bot_type': 'builder',
92 'testing': { 92 'testing': {
93 'platform': 'mac', 93 'platform': 'mac',
94 }, 94 },
95 'enable_swarming': True, 95 'enable_swarming': True,
96 'use_isolate': True, 96 'use_isolate': True,
97 }, 97 },
98 'Mac10.8 Tests (ANGLE)': { 98 'Mac10.8 Tests (ANGLE)': {
99 'chromium_config': 'chromium', 99 'chromium_config': 'chromium',
100 'chromium_apply_config': ['ninja_confirm_noop', 'chromium_mac_sdk_10_10'], 100 'chromium_apply_config': ['ninja_confirm_noop'],
101 'gclient_config': 'chromium_angle', 101 'gclient_config': 'chromium_angle',
102 'chromium_config_kwargs': { 102 'chromium_config_kwargs': {
103 'BUILD_CONFIG': 'Release', 103 'BUILD_CONFIG': 'Release',
104 'TARGET_BITS': 64, 104 'TARGET_BITS': 64,
105 }, 105 },
106 'test_generators': [ 106 'test_generators': [
107 steps.generate_gtest, 107 steps.generate_gtest,
108 steps.generate_script, 108 steps.generate_script,
109 steps.generate_isolated_script, 109 steps.generate_isolated_script,
110 ], 110 ],
111 'bot_type': 'tester', 111 'bot_type': 'tester',
112 'parent_buildername': 'Mac Builder (ANGLE)', 112 'parent_buildername': 'Mac Builder (ANGLE)',
113 'testing': { 113 'testing': {
114 'platform': 'mac', 114 'platform': 'mac',
115 }, 115 },
116 'enable_swarming': True, 116 'enable_swarming': True,
117 'swarming_dimensions': { 117 'swarming_dimensions': {
118 'os': 'Mac-10.8', 118 'os': 'Mac-10.8',
119 }, 119 },
120 }, 120 },
121 'Mac Builder (dbg) (ANGLE)': { 121 'Mac Builder (dbg) (ANGLE)': {
122 'chromium_config': 'chromium', 122 'chromium_config': 'chromium',
123 'chromium_apply_config': ['ninja_confirm_noop', 'chromium_mac_sdk_10_10'], 123 'chromium_apply_config': ['ninja_confirm_noop'],
124 'gclient_config': 'chromium_angle', 124 'gclient_config': 'chromium_angle',
125 'chromium_config_kwargs': { 125 'chromium_config_kwargs': {
126 'BUILD_CONFIG': 'Debug', 126 'BUILD_CONFIG': 'Debug',
127 'TARGET_BITS': 64, 127 'TARGET_BITS': 64,
128 }, 128 },
129 'bot_type': 'builder', 129 'bot_type': 'builder',
130 'testing': { 130 'testing': {
131 'platform': 'mac', 131 'platform': 'mac',
132 }, 132 },
133 'enable_swarming': True, 133 'enable_swarming': True,
134 'use_isolate': True, 134 'use_isolate': True,
135 }, 135 },
136 'Mac10.8 Tests (dbg) (ANGLE)': { 136 'Mac10.8 Tests (dbg) (ANGLE)': {
137 'chromium_config': 'chromium', 137 'chromium_config': 'chromium',
138 'chromium_apply_config': ['ninja_confirm_noop', 'chromium_mac_sdk_10_10'], 138 'chromium_apply_config': ['ninja_confirm_noop'],
139 'gclient_config': 'chromium_angle', 139 'gclient_config': 'chromium_angle',
140 'chromium_config_kwargs': { 140 'chromium_config_kwargs': {
141 'BUILD_CONFIG': 'Debug', 141 'BUILD_CONFIG': 'Debug',
142 'TARGET_BITS': 64, 142 'TARGET_BITS': 64,
143 }, 143 },
144 'test_generators': [ 144 'test_generators': [
145 steps.generate_gtest, 145 steps.generate_gtest,
146 steps.generate_script, 146 steps.generate_script,
147 steps.generate_isolated_script, 147 steps.generate_isolated_script,
148 ], 148 ],
(...skipping 143 matching lines...) Expand 10 before | Expand all | Expand 10 after
292 ], 292 ],
293 'parent_buildername': 'Win x64 Builder (dbg) (ANGLE)', 293 'parent_buildername': 'Win x64 Builder (dbg) (ANGLE)',
294 'testing': { 294 'testing': {
295 'platform': 'win', 295 'platform': 'win',
296 }, 296 },
297 'enable_swarming': True, 297 'enable_swarming': True,
298 'use_isolate': True, 298 'use_isolate': True,
299 }, 299 },
300 }, 300 },
301 } 301 }
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/chromium/config.py ('k') | scripts/slave/recipe_modules/chromium_tests/chromium_fyi.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698