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

Side by Side Diff: scripts/slave/recipes/libyuv/libyuv.expected/client_libyuv_mac_asan.json

Issue 2412033002: libyuv: Switch bots over to GN by default. (Closed)
Patch Set: Reverted is_component_build changes in chromium recipe module. Created 4 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
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "python", 4 "python",
5 "-u", 5 "-u",
6 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py", 6 "RECIPE_PACKAGE_REPO[build]/scripts/tools/runit.py",
7 "--show-path", 7 "--show-path",
8 "python", 8 "python",
9 "RECIPE_PACKAGE_REPO[build]/scripts/slave/cleanup_temp.py" 9 "RECIPE_PACKAGE_REPO[build]/scripts/slave/cleanup_temp.py"
10 ], 10 ],
(...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after
122 "cmd": [ 122 "cmd": [
123 "python", 123 "python",
124 "-u", 124 "-u",
125 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py", 125 "RECIPE_PACKAGE_REPO[depot_tools]/gclient.py",
126 "runhooks" 126 "runhooks"
127 ], 127 ],
128 "cwd": "[SLAVE_BUILD]/src", 128 "cwd": "[SLAVE_BUILD]/src",
129 "env": { 129 "env": {
130 "FORCE_MAC_TOOLCHAIN": "1", 130 "FORCE_MAC_TOOLCHAIN": "1",
131 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 131 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
132 "GYP_CHROMIUM_NO_ACTION": "1",
132 "GYP_DEFINES": "asan=1 clang=1 component=static_library fastbuild=0 gomadi r='[CACHE]/cipd/goma' lsan=1 target_arch=x64 use_goma=1", 133 "GYP_DEFINES": "asan=1 clang=1 component=static_library fastbuild=0 gomadi r='[CACHE]/cipd/goma' lsan=1 target_arch=x64 use_goma=1",
133 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]" 134 "PATH": "%(PATH)s:RECIPE_PACKAGE_REPO[depot_tools]"
134 }, 135 },
135 "name": "gclient runhooks" 136 "name": "gclient runhooks"
136 }, 137 },
137 { 138 {
139 "cmd": [
140 "python",
141 "-u",
142 "RECIPE_PACKAGE_REPO[depot_tools]/gn.py",
143 "--root=[SLAVE_BUILD]/src",
144 "gen",
145 "//out/Release",
146 "--args=is_clang=true symbol_level=1 is_asan=true is_lsan=true is_debug=fa lse target_cpu=\"x64\" use_goma=true goma_dir=\"[CACHE]/cipd/goma\""
147 ],
148 "cwd": "[SLAVE_BUILD]/src",
149 "name": "gn"
150 },
151 {
138 "allow_subannotations": true, 152 "allow_subannotations": true,
139 "cmd": [ 153 "cmd": [
140 "python", 154 "python",
141 "-u", 155 "-u",
142 "RECIPE_PACKAGE_REPO[build]/scripts/slave/clang_revision.py", 156 "RECIPE_PACKAGE_REPO[build]/scripts/slave/clang_revision.py",
143 "--src-dir", 157 "--src-dir",
144 "[SLAVE_BUILD]/src", 158 "[SLAVE_BUILD]/src",
145 "--output-json", 159 "--output-json",
146 "/path/to/tmp/json" 160 "/path/to/tmp/json"
147 ], 161 ],
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
184 "--goma-deps-cache-file", 198 "--goma-deps-cache-file",
185 "Mac_Asan.gomadeps", 199 "Mac_Asan.gomadeps",
186 "--compiler", 200 "--compiler",
187 "goma-clang", 201 "goma-clang",
188 "--goma-jsonstatus", 202 "--goma-jsonstatus",
189 "/path/to/tmp/json", 203 "/path/to/tmp/json",
190 "--goma-service-account-json-file", 204 "--goma-service-account-json-file",
191 "/creds/service_accounts/service-account-goma-client.json", 205 "/creds/service_accounts/service-account-goma-client.json",
192 "--goma-dir", 206 "--goma-dir",
193 "[CACHE]/cipd/goma", 207 "[CACHE]/cipd/goma",
194 "--", 208 "--"
195 "All"
196 ], 209 ],
197 "env": { 210 "env": {
198 "FORCE_MAC_TOOLCHAIN": "1", 211 "FORCE_MAC_TOOLCHAIN": "1",
199 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json" 212 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json"
200 }, 213 },
201 "name": "compile", 214 "name": "compile",
202 "~followup_annotations": [ 215 "~followup_annotations": [
203 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@", 216 "@@@STEP_LOG_LINE@json.output (invalid)@null@@@",
204 "@@@STEP_LOG_END@json.output (invalid)@@@" 217 "@@@STEP_LOG_END@json.output (invalid)@@@"
205 ] 218 ]
(...skipping 17 matching lines...) Expand all
223 "libyuv_unittest" 236 "libyuv_unittest"
224 ], 237 ],
225 "name": "libyuv_unittest" 238 "name": "libyuv_unittest"
226 }, 239 },
227 { 240 {
228 "name": "$result", 241 "name": "$result",
229 "recipe_result": null, 242 "recipe_result": null,
230 "status_code": 0 243 "status_code": 0
231 } 244 }
232 ] 245 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698