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

Side by Side Diff: scripts/slave/recipe_modules/zip/example.expected/win.json

Issue 985273002: Changed recipe_modules base paths to be abstract entities in their own right. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Rebase Created 5 years, 9 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 | Annotate | Revision Log
OLDNEW
1 [ 1 [
2 { 2 {
3 "cmd": [ 3 "cmd": [
4 "touch", 4 "touch",
5 "[TMP_BASE]\\zip-example_tmp_1\\a" 5 "[TMP_BASE]\\zip-example_tmp_1\\a"
6 ], 6 ],
7 "name": "touch a" 7 "name": "touch a"
8 }, 8 },
9 { 9 {
10 "cmd": [ 10 "cmd": [
(...skipping 28 matching lines...) Expand all
39 "cmd": [ 39 "cmd": [
40 "touch", 40 "touch",
41 "[TMP_BASE]\\zip-example_tmp_1\\sub\\dir\\c" 41 "[TMP_BASE]\\zip-example_tmp_1\\sub\\dir\\c"
42 ], 42 ],
43 "name": "touch c" 43 "name": "touch c"
44 }, 44 },
45 { 45 {
46 "cmd": [ 46 "cmd": [
47 "python", 47 "python",
48 "-u", 48 "-u",
49 "[BUILD]\\scripts\\slave\\recipe_modules\\zip\\resources\\zip.py" 49 "RECIPE_MODULE[zip]\\resources\\zip.py"
50 ], 50 ],
51 "name": "zipping", 51 "name": "zipping",
52 "stdin": "{\"entries\": [{\"path\": \"[TMP_BASE]\\\\zip-example_tmp_1\", \"t ype\": \"dir\"}], \"output\": \"[TMP_BASE]\\\\zip-example_tmp_1\\\\output.zip\", \"root\": \"[TMP_BASE]\\\\zip-example_tmp_1\", \"use_python_zip\": true}" 52 "stdin": "{\"entries\": [{\"path\": \"[TMP_BASE]\\\\zip-example_tmp_1\", \"t ype\": \"dir\"}], \"output\": \"[TMP_BASE]\\\\zip-example_tmp_1\\\\output.zip\", \"root\": \"[TMP_BASE]\\\\zip-example_tmp_1\", \"use_python_zip\": true}"
53 }, 53 },
54 { 54 {
55 "cmd": [ 55 "cmd": [
56 "python", 56 "python",
57 "-u", 57 "-u",
58 "[BUILD]\\scripts\\slave\\recipe_modules\\zip\\resources\\zip.py" 58 "RECIPE_MODULE[zip]\\resources\\zip.py"
59 ], 59 ],
60 "name": "zipping more", 60 "name": "zipping more",
61 "stdin": "{\"entries\": [{\"path\": \"[TMP_BASE]\\\\zip-example_tmp_1\\\\a\" , \"type\": \"file\"}, {\"path\": \"[TMP_BASE]\\\\zip-example_tmp_1\\\\b\", \"ty pe\": \"file\"}, {\"path\": \"[TMP_BASE]\\\\zip-example_tmp_1\\\\sub\", \"type\" : \"dir\"}], \"output\": \"[TMP_BASE]\\\\zip-example_tmp_1\\\\more.zip\", \"root \": \"[TMP_BASE]\\\\zip-example_tmp_1\", \"use_python_zip\": true}" 61 "stdin": "{\"entries\": [{\"path\": \"[TMP_BASE]\\\\zip-example_tmp_1\\\\a\" , \"type\": \"file\"}, {\"path\": \"[TMP_BASE]\\\\zip-example_tmp_1\\\\b\", \"ty pe\": \"file\"}, {\"path\": \"[TMP_BASE]\\\\zip-example_tmp_1\\\\sub\", \"type\" : \"dir\"}], \"output\": \"[TMP_BASE]\\\\zip-example_tmp_1\\\\more.zip\", \"root \": \"[TMP_BASE]\\\\zip-example_tmp_1\", \"use_python_zip\": true}"
62 }, 62 },
63 { 63 {
64 "cmd": [ 64 "cmd": [
65 "echo", 65 "echo",
66 "[TMP_BASE]\\zip-example_tmp_1\\more.zip" 66 "[TMP_BASE]\\zip-example_tmp_1\\more.zip"
67 ], 67 ],
68 "name": "report" 68 "name": "report"
69 }, 69 },
70 { 70 {
71 "cmd": [ 71 "cmd": [
72 "python", 72 "python",
73 "-u", 73 "-u",
74 "[BUILD]\\scripts\\slave\\recipe_modules\\zip\\resources\\unzip.py" 74 "RECIPE_MODULE[zip]\\resources\\unzip.py"
75 ], 75 ],
76 "name": "unzipping", 76 "name": "unzipping",
77 "stdin": "{\"output\": \"[TMP_BASE]\\\\zip-example_tmp_1\\\\output\", \"use_ python_zip\": true, \"zip_file\": \"[TMP_BASE]\\\\zip-example_tmp_1\\\\output.zi p\"}" 77 "stdin": "{\"output\": \"[TMP_BASE]\\\\zip-example_tmp_1\\\\output\", \"use_ python_zip\": true, \"zip_file\": \"[TMP_BASE]\\\\zip-example_tmp_1\\\\output.zi p\"}"
78 }, 78 },
79 { 79 {
80 "cmd": [ 80 "cmd": [
81 "find" 81 "find"
82 ], 82 ],
83 "cwd": "[TMP_BASE]\\zip-example_tmp_1\\output", 83 "cwd": "[TMP_BASE]\\zip-example_tmp_1\\output",
84 "name": "listing" 84 "name": "listing"
(...skipping 10 matching lines...) Expand all
95 "@@@STEP_LOG_LINE@python.inline@@@@", 95 "@@@STEP_LOG_LINE@python.inline@@@@",
96 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", 96 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@",
97 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils@@@", 97 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils@@@",
98 "@@@STEP_LOG_LINE@python.inline@@@@", 98 "@@@STEP_LOG_LINE@python.inline@@@@",
99 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", 99 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@",
100 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[ 1])@@@", 100 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[ 1])@@@",
101 "@@@STEP_LOG_END@python.inline@@@" 101 "@@@STEP_LOG_END@python.inline@@@"
102 ] 102 ]
103 } 103 }
104 ] 104 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698