OLD | NEW |
| (Empty) |
1 [ | |
2 { | |
3 "cmd": [ | |
4 "python", | |
5 "-u", | |
6 "[DEPOT_TOOLS]/gclient.py", | |
7 "config", | |
8 "--spec", | |
9 "cache_dir = None\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'na
me': 'crashpad', 'url': 'https://chromium.googlesource.com/crashpad/crashpad.git
'}]" | |
10 ], | |
11 "cwd": "[SLAVE_BUILD]", | |
12 "name": "gclient setup" | |
13 }, | |
14 { | |
15 "cmd": [ | |
16 "python", | |
17 "-u", | |
18 "[DEPOT_TOOLS]/gclient.py", | |
19 "sync", | |
20 "--nohooks", | |
21 "--force", | |
22 "--verbose", | |
23 "--delete_unversioned_trees", | |
24 "--output-json", | |
25 "/path/to/tmp/json" | |
26 ], | |
27 "cwd": "[SLAVE_BUILD]", | |
28 "name": "gclient sync", | |
29 "~followup_annotations": [ | |
30 "@@@STEP_LOG_LINE@json.output@{@@@", | |
31 "@@@STEP_LOG_LINE@json.output@ \"solutions\": {@@@", | |
32 "@@@STEP_LOG_LINE@json.output@ \"crashpad/\": {@@@", | |
33 "@@@STEP_LOG_LINE@json.output@ \"revision\": 16463@@@", | |
34 "@@@STEP_LOG_LINE@json.output@ }@@@", | |
35 "@@@STEP_LOG_LINE@json.output@ }@@@", | |
36 "@@@STEP_LOG_LINE@json.output@}@@@", | |
37 "@@@STEP_LOG_END@json.output@@@" | |
38 ] | |
39 }, | |
40 { | |
41 "cmd": [ | |
42 "python", | |
43 "-u", | |
44 "\nimport os, sys\nfrom common import chromium_utils\n\nif os.path.exists(
sys.argv[1]):\n chromium_utils.RemoveDirectory(sys.argv[1])\n", | |
45 "[SLAVE_BUILD]/crashpad/out" | |
46 ], | |
47 "cwd": "[SLAVE_BUILD]", | |
48 "name": "rmtree out", | |
49 "~followup_annotations": [ | |
50 "@@@STEP_LOG_LINE@python.inline@@@@", | |
51 "@@@STEP_LOG_LINE@python.inline@import os, sys@@@", | |
52 "@@@STEP_LOG_LINE@python.inline@from common import chromium_utils@@@", | |
53 "@@@STEP_LOG_LINE@python.inline@@@@", | |
54 "@@@STEP_LOG_LINE@python.inline@if os.path.exists(sys.argv[1]):@@@", | |
55 "@@@STEP_LOG_LINE@python.inline@ chromium_utils.RemoveDirectory(sys.argv[
1])@@@", | |
56 "@@@STEP_LOG_END@python.inline@@@" | |
57 ] | |
58 }, | |
59 { | |
60 "cmd": [ | |
61 "python", | |
62 "-u", | |
63 "[DEPOT_TOOLS]/gclient.py", | |
64 "runhooks" | |
65 ], | |
66 "cwd": "[SLAVE_BUILD]", | |
67 "env": { | |
68 "GYP_DEFINES": "target_arch=ia32" | |
69 }, | |
70 "name": "gclient runhooks" | |
71 }, | |
72 { | |
73 "cmd": [ | |
74 "ninja", | |
75 "-C", | |
76 "[SLAVE_BUILD]/crashpad/out/Debug" | |
77 ], | |
78 "cwd": "[SLAVE_BUILD]", | |
79 "name": "compile with ninja" | |
80 }, | |
81 { | |
82 "cmd": [ | |
83 "python", | |
84 "-u", | |
85 "[SLAVE_BUILD]/crashpad/build/run_tests.py", | |
86 "Debug" | |
87 ], | |
88 "cwd": "[SLAVE_BUILD]", | |
89 "name": "run tests" | |
90 } | |
91 ] | |
OLD | NEW |