| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "python", | 4 "python", |
| 5 "-u", | 5 "-u", |
| 6 "[BUILD]/scripts/slave/bot_update.py", | 6 "[BUILD]/scripts/slave/bot_update.py", |
| 7 "--master", | 7 "--master", |
| 8 "chromium.fyi", | 8 "chromium.fyi", |
| 9 "--builder", | 9 "--builder", |
| 10 "ChromiumOS Codesearch", | 10 "ChromiumOS Codesearch", |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 97 "--target", | 97 "--target", |
| 98 "Debug", | 98 "Debug", |
| 99 "--src-dir", | 99 "--src-dir", |
| 100 "[SLAVE_BUILD]/src", | 100 "[SLAVE_BUILD]/src", |
| 101 "--build-tool", | 101 "--build-tool", |
| 102 "ninja", | 102 "ninja", |
| 103 "--compiler", | 103 "--compiler", |
| 104 "goma-clang", | 104 "goma-clang", |
| 105 "--goma-dir", | 105 "--goma-dir", |
| 106 "[BUILD]/goma", | 106 "[BUILD]/goma", |
| 107 "--clobber", | |
| 108 "--", | 107 "--", |
| 109 "all" | 108 "all" |
| 110 ], | 109 ], |
| 111 "name": "compile" | 110 "name": "compile" |
| 112 }, | 111 }, |
| 113 { | 112 { |
| 114 "cmd": [ | 113 "cmd": [ |
| 115 "cp", | 114 "cp", |
| 116 "some compilation data", | 115 "some compilation data", |
| 117 "[SLAVE_BUILD]/src/out/Debug/compile_commands.json" | 116 "[SLAVE_BUILD]/src/out/Debug/compile_commands.json" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 128 "--factory-properties", | 127 "--factory-properties", |
| 129 "{\"package_filename\": \"chromiumos-src\"}", | 128 "{\"package_filename\": \"chromiumos-src\"}", |
| 130 "--path-to-compdb", | 129 "--path-to-compdb", |
| 131 "some compilation data", | 130 "some compilation data", |
| 132 "--environment", | 131 "--environment", |
| 133 "prod" | 132 "prod" |
| 134 ], | 133 ], |
| 135 "name": "package_source" | 134 "name": "package_source" |
| 136 } | 135 } |
| 137 ] | 136 ] |
| OLD | NEW |