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

Side by Side Diff: scripts/slave/recipe_modules/path/example.expected/mac.json

Issue 297143002: Reland "Simplified android_builder and moved internal-only methods to internal module" (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: Review comment Created 6 years, 6 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 "/bin/echo", 4 "/bin/echo",
5 "[SLAVE_BUILD]/foo" 5 "[SLAVE_BUILD]/foo"
6 ], 6 ],
7 "name": "step1" 7 "name": "step1"
8 }, 8 },
9 { 9 {
10 "cmd": [ 10 "cmd": [
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 "[TMP_BASE]/prefix_b_tmp_2" 56 "[TMP_BASE]/prefix_b_tmp_2"
57 ], 57 ],
58 "name": "print prefix_b" 58 "name": "print prefix_b"
59 }, 59 },
60 { 60 {
61 "cmd": [ 61 "cmd": [
62 "echo", 62 "echo",
63 "[BUILD]/scripts/slave/recipe_modules/path/resources/dir/file.py" 63 "[BUILD]/scripts/slave/recipe_modules/path/resources/dir/file.py"
64 ], 64 ],
65 "name": "print resource" 65 "name": "print resource"
66 },
67 {
68 "cmd": [
69 "python",
70 "-u",
71 "\nimport sys\nfrom common import chromium_utils\n\nchromium_utils.RemoveF ilesWildcards(sys.argv[1], root=sys.argv[2])\n",
72 "*.o",
73 "[SLAVE_BUILD]"
74 ],
75 "name": "rmwildcard *.o in [SLAVE_BUILD]",
76 "~followup_annotations": [
77 "@@@STEP_LOG_LINE@python.inline@@@@",
78 "@@@STEP_LOG_LINE@python.inline@import sys@@@",
79 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils@@@",
80 "@@@STEP_LOG_LINE@python.inline@@@@",
81 "@@@STEP_LOG_LINE@python.inline@chromium_utils.RemoveFilesWildcards(sys.ar gv[1], root=sys.argv[2])@@@",
82 "@@@STEP_LOG_END@python.inline@@@"
83 ]
66 } 84 }
67 ] 85 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698