diff options
| author | 2017-07-06 18:30:04 +0000 | |
|---|---|---|
| committer | 2017-07-06 18:30:04 +0000 | |
| commit | 170de15c5fc91ca8e9bc854f6adbee84d9b15b0b (patch) | |
| tree | eb4d970ecfcfdbd343002b7d7303f97ffd1238d4 | |
| parent | e32097c4d7f068673b531384340bb55f4b2ac011 (diff) | |
| parent | 1b49910396629427d8d11aefb574817aec0231fb (diff) | |
Merge "Move libartd-simulator dependency to host-only"
| -rw-r--r-- | compiler/Android.bp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/compiler/Android.bp b/compiler/Android.bp index a1269dcaf9..62226dab4d 100644 --- a/compiler/Android.bp +++ b/compiler/Android.bp @@ -429,13 +429,20 @@ art_cc_test { shared_libs: [ "libartd-compiler", - "libartd-simulator", "libvixld-arm", "libvixld-arm64", "libbacktrace", "libnativeloader", ], + + target: { + host: { + shared_libs: [ + "libartd-simulator", + ], + }, + }, } art_cc_test { |