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

Side by Side Diff: scripts/slave/recipe_modules/chromium_android/example.expected/restart_usb_builder_basic.json

Issue 2152453003: recipes: Stop passing --build-tool=ninja to compile.py (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: Created 4 years, 5 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 "\nimport os, sys\n\nbuild_path = sys.argv[1]\nif os.path.exists(build_pat h):\n for (path, dir, files) in os.walk(build_path):\n for cur_file in files :\n if cur_file.endswith('index.lock'):\n path_to_file = os.path.joi n(path, cur_file)\n print 'deleting %s' % path_to_file\n os.remove (path_to_file)\n", 6 "\nimport os, sys\n\nbuild_path = sys.argv[1]\nif os.path.exists(build_pat h):\n for (path, dir, files) in os.walk(build_path):\n for cur_file in files :\n if cur_file.endswith('index.lock'):\n path_to_file = os.path.joi n(path, cur_file)\n print 'deleting %s' % path_to_file\n os.remove (path_to_file)\n",
7 "[SLAVE_BUILD]" 7 "[SLAVE_BUILD]"
8 ], 8 ],
9 "name": "cleanup index.lock", 9 "name": "cleanup index.lock",
10 "~followup_annotations": [ 10 "~followup_annotations": [
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 "--gsutil-py-path", 179 "--gsutil-py-path",
180 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py", 180 "RECIPE_PACKAGE_REPO[depot_tools]/gsutil.py",
181 "--ninja-path", 181 "--ninja-path",
182 "RECIPE_PACKAGE_REPO[depot_tools]/ninja", 182 "RECIPE_PACKAGE_REPO[depot_tools]/ninja",
183 "--target", 183 "--target",
184 "Release", 184 "Release",
185 "--src-dir", 185 "--src-dir",
186 "[SLAVE_BUILD]/src", 186 "[SLAVE_BUILD]/src",
187 "--goma-cache-dir", 187 "--goma-cache-dir",
188 "[GOMA_CACHE]", 188 "[GOMA_CACHE]",
189 "--build-tool",
190 "ninja",
191 "--goma-fail-fast", 189 "--goma-fail-fast",
192 "--goma-disable-local-fallback", 190 "--goma-disable-local-fallback",
193 "--" 191 "--"
194 ], 192 ],
195 "env": { 193 "env": {
196 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json", 194 "GOMA_SERVICE_ACCOUNT_JSON_FILE": "/creds/service_accounts/service-account -goma-client.json",
197 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 195 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
198 }, 196 },
199 "name": "compile" 197 "name": "compile"
200 }, 198 },
(...skipping 701 matching lines...) Expand 10 before | Expand all | Expand 10 after
902 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 900 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
903 }, 901 },
904 "name": "stack_tool_for_asan" 902 "name": "stack_tool_for_asan"
905 }, 903 },
906 { 904 {
907 "name": "$result", 905 "name": "$result",
908 "recipe_result": null, 906 "recipe_result": null,
909 "status_code": 0 907 "status_code": 0
910 } 908 }
911 ] 909 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698