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