| 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 "Chromium Linux Codesearch", | 10 "Chromium Linux Codesearch", |
| (...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 96 "--target", | 96 "--target", |
| 97 "Debug", | 97 "Debug", |
| 98 "--src-dir", | 98 "--src-dir", |
| 99 "[SLAVE_BUILD]/src", | 99 "[SLAVE_BUILD]/src", |
| 100 "--build-tool", | 100 "--build-tool", |
| 101 "ninja", | 101 "ninja", |
| 102 "--compiler", | 102 "--compiler", |
| 103 "goma-clang", | 103 "goma-clang", |
| 104 "--goma-dir", | 104 "--goma-dir", |
| 105 "[BUILD]/goma", | 105 "[BUILD]/goma", |
| 106 "--clobber", | |
| 107 "--", | 106 "--", |
| 108 "all" | 107 "all" |
| 109 ], | 108 ], |
| 110 "name": "compile" | 109 "name": "compile" |
| 111 }, | 110 }, |
| 112 { | 111 { |
| 113 "cmd": [ | 112 "cmd": [ |
| 114 "cp", | 113 "cp", |
| 115 "some compilation data", | 114 "some compilation data", |
| 116 "[SLAVE_BUILD]/src/out/Debug/compile_commands.json" | 115 "[SLAVE_BUILD]/src/out/Debug/compile_commands.json" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 127 "--factory-properties", | 126 "--factory-properties", |
| 128 "{\"package_filename\": \"chromium-src\"}", | 127 "{\"package_filename\": \"chromium-src\"}", |
| 129 "--path-to-compdb", | 128 "--path-to-compdb", |
| 130 "some compilation data", | 129 "some compilation data", |
| 131 "--environment", | 130 "--environment", |
| 132 "prod" | 131 "prod" |
| 133 ], | 132 ], |
| 134 "name": "package_source" | 133 "name": "package_source" |
| 135 } | 134 } |
| 136 ] | 135 ] |
| OLD | NEW |