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

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

Issue 1217403003: Enable ninja_confirm_noop by default (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Created 5 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 "cwd": "[SLAVE_BUILD]", 9 "cwd": "[SLAVE_BUILD]",
10 "name": "cleanup index.lock", 10 "name": "cleanup index.lock",
(...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after
202 "-u", 202 "-u",
203 "[BUILD]/scripts/slave/compile.py", 203 "[BUILD]/scripts/slave/compile.py",
204 "--target", 204 "--target",
205 "Release", 205 "Release",
206 "--src-dir", 206 "--src-dir",
207 "[SLAVE_BUILD]/src", 207 "[SLAVE_BUILD]/src",
208 "--build-tool", 208 "--build-tool",
209 "ninja", 209 "ninja",
210 "--goma-fail-fast", 210 "--goma-fail-fast",
211 "--goma-disable-local-fallback", 211 "--goma-disable-local-fallback",
212 "--ninja-ensure-up-to-date",
212 "--" 213 "--"
213 ], 214 ],
214 "cwd": "[SLAVE_BUILD]", 215 "cwd": "[SLAVE_BUILD]",
215 "env": { 216 "env": {
216 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 217 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
217 }, 218 },
218 "name": "compile" 219 "name": "compile"
219 }, 220 },
220 { 221 {
221 "cmd": [ 222 "cmd": [
(...skipping 366 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 "-l", 589 "-l",
589 "[SLAVE_BUILD]/src/out/Release/full_log" 590 "[SLAVE_BUILD]/src/out/Release/full_log"
590 ], 591 ],
591 "cwd": "[SLAVE_BUILD]", 592 "cwd": "[SLAVE_BUILD]",
592 "env": { 593 "env": {
593 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s" 594 "PATH": "[SLAVE_BUILD]/src/third_party/android_tools/sdk/platform-tools:[S LAVE_BUILD]/src/build/android:%(PATH)s"
594 }, 595 },
595 "name": "stack_tool_for_asan" 596 "name": "stack_tool_for_asan"
596 } 597 }
597 ] 598 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698