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

Side by Side Diff: scripts/slave/recipes/pdfium.expected/win.json

Issue 1115453002: Recipes: make cwd default to slave_build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: rebase Created 5 years, 7 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 "python", 4 "python",
5 "-u", 5 "-u",
6 "[DEPOT_TOOLS]\\gclient.py", 6 "[DEPOT_TOOLS]\\gclient.py",
7 "config", 7 "config",
8 "--spec", 8 "--spec",
9 "cache_dir = None\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'na me': 'pdfium', 'url': 'https://pdfium.googlesource.com/pdfium.git'}]" 9 "cache_dir = None\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'na me': 'pdfium', 'url': 'https://pdfium.googlesource.com/pdfium.git'}]"
10 ], 10 ],
11 "cwd": "[SLAVE_BUILD]",
11 "name": "gclient setup" 12 "name": "gclient setup"
12 }, 13 },
13 { 14 {
14 "cmd": [ 15 "cmd": [
15 "python", 16 "python",
16 "-u", 17 "-u",
17 "[DEPOT_TOOLS]\\gclient.py", 18 "[DEPOT_TOOLS]\\gclient.py",
18 "sync", 19 "sync",
19 "--nohooks", 20 "--nohooks",
20 "--force", 21 "--force",
21 "--verbose", 22 "--verbose",
22 "--delete_unversioned_trees", 23 "--delete_unversioned_trees",
23 "--output-json", 24 "--output-json",
24 "/path/to/tmp/json" 25 "/path/to/tmp/json"
25 ], 26 ],
27 "cwd": "[SLAVE_BUILD]",
26 "name": "gclient sync", 28 "name": "gclient sync",
27 "~followup_annotations": [ 29 "~followup_annotations": [
28 "@@@STEP_LOG_LINE@json.output@{@@@", 30 "@@@STEP_LOG_LINE@json.output@{@@@",
29 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", 31 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@",
30 "@@@STEP_LOG_LINE@json.output@ \"pdfium/\": {@@@", 32 "@@@STEP_LOG_LINE@json.output@ \"pdfium/\": {@@@",
31 "@@@STEP_LOG_LINE@json.output@ \"revision\": 52055@@@", 33 "@@@STEP_LOG_LINE@json.output@ \"revision\": 52055@@@",
32 "@@@STEP_LOG_LINE@json.output@ }@@@", 34 "@@@STEP_LOG_LINE@json.output@ }@@@",
33 "@@@STEP_LOG_LINE@json.output@ }@@@", 35 "@@@STEP_LOG_LINE@json.output@ }@@@",
34 "@@@STEP_LOG_LINE@json.output@}@@@", 36 "@@@STEP_LOG_LINE@json.output@}@@@",
35 "@@@STEP_LOG_END@json.output@@@" 37 "@@@STEP_LOG_END@json.output@@@"
36 ] 38 ]
37 }, 39 },
38 { 40 {
39 "cmd": [ 41 "cmd": [
40 "python", 42 "python",
41 "-u", 43 "-u",
42 "[SLAVE_BUILD]\\pdfium\\build\\gyp_pdfium.py" 44 "[SLAVE_BUILD]\\pdfium\\build\\gyp_pdfium.py"
43 ], 45 ],
46 "cwd": "[SLAVE_BUILD]",
44 "env": { 47 "env": {
45 "GYP_GENERATORS": "ninja" 48 "GYP_GENERATORS": "ninja"
46 }, 49 },
47 "name": "gyp_pdfium" 50 "name": "gyp_pdfium"
48 }, 51 },
49 { 52 {
50 "cmd": [ 53 "cmd": [
51 "ninja", 54 "ninja",
52 "-C", 55 "-C",
53 "[SLAVE_BUILD]\\pdfium\\out\\Debug" 56 "[SLAVE_BUILD]\\pdfium\\out\\Debug"
54 ], 57 ],
58 "cwd": "[SLAVE_BUILD]",
55 "name": "compile with ninja" 59 "name": "compile with ninja"
56 }, 60 },
57 { 61 {
58 "cmd": [ 62 "cmd": [
59 "[SLAVE_BUILD]\\pdfium\\out\\Debug\\pdfium_unittests.exe" 63 "[SLAVE_BUILD]\\pdfium\\out\\Debug\\pdfium_unittests.exe"
60 ], 64 ],
65 "cwd": "[SLAVE_BUILD]",
61 "name": "unittests" 66 "name": "unittests"
62 }, 67 },
63 { 68 {
64 "cmd": [ 69 "cmd": [
65 "[SLAVE_BUILD]\\pdfium\\out\\Debug\\pdfium_embeddertests.exe" 70 "[SLAVE_BUILD]\\pdfium\\out\\Debug\\pdfium_embeddertests.exe"
66 ], 71 ],
67 "cwd": "[SLAVE_BUILD]\\pdfium", 72 "cwd": "[SLAVE_BUILD]\\pdfium",
68 "name": "embeddertests" 73 "name": "embeddertests"
69 }, 74 },
70 { 75 {
(...skipping 17 matching lines...) Expand all
88 { 93 {
89 "cmd": [ 94 "cmd": [
90 "python", 95 "python",
91 "-u", 96 "-u",
92 "[SLAVE_BUILD]\\pdfium\\testing\\tools\\run_corpus_tests.py" 97 "[SLAVE_BUILD]\\pdfium\\testing\\tools\\run_corpus_tests.py"
93 ], 98 ],
94 "cwd": "[SLAVE_BUILD]\\pdfium", 99 "cwd": "[SLAVE_BUILD]\\pdfium",
95 "name": "corpus tests" 100 "name": "corpus tests"
96 } 101 }
97 ] 102 ]
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698