OLD | NEW |
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': 'crashpad', 'url': 'https://chromium.googlesource.com/crashpad/crashpad.git
'}]" | 9 "cache_dir = None\nsolutions = [{'deps_file': 'DEPS', 'managed': True, 'na
me': 'crashpad', 'url': 'https://chromium.googlesource.com/crashpad/crashpad.git
'}]" |
10 ], | 10 ], |
(...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
70 "cmd": [ | 70 "cmd": [ |
71 "ninja", | 71 "ninja", |
72 "-C", | 72 "-C", |
73 "[SLAVE_BUILD]/crashpad/out/Debug" | 73 "[SLAVE_BUILD]/crashpad/out/Debug" |
74 ], | 74 ], |
75 "cwd": "[SLAVE_BUILD]", | 75 "cwd": "[SLAVE_BUILD]", |
76 "name": "compile with ninja" | 76 "name": "compile with ninja" |
77 }, | 77 }, |
78 { | 78 { |
79 "cmd": [ | 79 "cmd": [ |
| 80 "ninja", |
| 81 "-C", |
| 82 "[SLAVE_BUILD]/crashpad/out/Debug_x64" |
| 83 ], |
| 84 "cwd": "[SLAVE_BUILD]", |
| 85 "name": "compile with ninja (2)" |
| 86 }, |
| 87 { |
| 88 "cmd": [ |
80 "python", | 89 "python", |
81 "-u", | 90 "-u", |
82 "[SLAVE_BUILD]/crashpad/build/run_tests.py", | 91 "[SLAVE_BUILD]/crashpad/build/run_tests.py", |
83 "Debug" | 92 "Debug_x64" |
84 ], | 93 ], |
85 "cwd": "[SLAVE_BUILD]", | 94 "cwd": "[SLAVE_BUILD]", |
86 "name": "run tests" | 95 "name": "run tests" |
87 } | 96 } |
88 ] | 97 ] |
OLD | NEW |