| OLD | NEW |
| 1 [ | 1 [ |
| 2 { | 2 { |
| 3 "cmd": [ | 3 "cmd": [ |
| 4 "[ROOT]/b/depot_tools/repo", | 4 "[DEPOT_TOOLS]/repo", |
| 5 "init", | 5 "init", |
| 6 "-u", | 6 "-u", |
| 7 "https://android.googlesource.com/platform/manifest", | 7 "https://android.googlesource.com/platform/manifest", |
| 8 "-b", | 8 "-b", |
| 9 "master" | 9 "master" |
| 10 ], | 10 ], |
| 11 "cwd": "[SLAVE_BUILD]", |
| 11 "name": "repo init" | 12 "name": "repo init" |
| 12 }, | 13 }, |
| 13 { | 14 { |
| 14 "cmd": [ | 15 "cmd": [ |
| 15 "[ROOT]/b/depot_tools/repo", | 16 "[DEPOT_TOOLS]/repo", |
| 16 "sync" | 17 "sync" |
| 17 ], | 18 ], |
| 19 "cwd": "[SLAVE_BUILD]", |
| 18 "name": "repo sync" | 20 "name": "repo sync" |
| 19 }, | 21 }, |
| 20 { | 22 { |
| 21 "cmd": [ | 23 "cmd": [ |
| 22 "make", | 24 "make", |
| 23 "-j8", | 25 "-j8", |
| 24 "out/host/linux-x86/bin/dex2oats" | 26 "out/host/linux-x86/bin/dex2oats" |
| 25 ], | 27 ], |
| 28 "cwd": "[SLAVE_BUILD]", |
| 26 "env": { | 29 "env": { |
| 27 "ART_BUILD_HOST_STATIC": "true", | 30 "ART_BUILD_HOST_STATIC": "true", |
| 28 "ART_USE_OPTIMIZING_COMPILER": "true", | 31 "ART_USE_OPTIMIZING_COMPILER": "true", |
| 29 "LEGACY_USE_JAVA7": "true", | 32 "LEGACY_USE_JAVA7": "true", |
| 30 "TARGET_BUILD_TYPE": "release", | 33 "TARGET_BUILD_TYPE": "release", |
| 31 "TARGET_BUILD_VARIANT": "eng", | 34 "TARGET_BUILD_VARIANT": "eng", |
| 32 "TARGET_PRODUCT": "aosp_x86_64" | 35 "TARGET_PRODUCT": "aosp_x86_64" |
| 33 }, | 36 }, |
| 34 "name": "build dex2oats" | 37 "name": "build dex2oats" |
| 35 }, | 38 }, |
| 36 { | 39 { |
| 37 "name": "$result", | 40 "name": "$result", |
| 38 "recipe_result": null, | 41 "recipe_result": null, |
| 39 "status_code": 0 | 42 "status_code": 0 |
| 40 } | 43 } |
| 41 ] | 44 ] |
| OLD | NEW |