diff options
| author | 2021-09-30 22:12:28 +0000 | |
|---|---|---|
| committer | 2021-09-30 22:12:28 +0000 | |
| commit | baee8f6388e3e17656d38827dc01976f81ac0cf7 (patch) | |
| tree | 236365c2b2eacaa2b3f7cfea480cd0faa3ad6aef | |
| parent | 43071723abc1728df6d4ebd1e909acab823de2c3 (diff) | |
| parent | bb9b28c9a2505b199ff47af07b7ba86798ae8bee (diff) | |
Merge "libbinder fuzzers: static on host" am: a59b716b8b am: e09ebe6117 am: bb9b28c9a2
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/1838240
Change-Id: I866e60e941ceb39c8bca69b9da5b35d023e8ad42
| -rw-r--r-- | libs/binder/tests/unit_fuzzers/Android.bp | 26 |
1 files changed, 19 insertions, 7 deletions
diff --git a/libs/binder/tests/unit_fuzzers/Android.bp b/libs/binder/tests/unit_fuzzers/Android.bp index 6f054d2284..8ea948cc15 100644 --- a/libs/binder/tests/unit_fuzzers/Android.bp +++ b/libs/binder/tests/unit_fuzzers/Android.bp @@ -30,16 +30,28 @@ cc_defaults { "-Wall", "-Werror", ], - shared_libs: [ - "libbinder", - "libutils", - "libbase", - ], target: { + android: { + shared_libs: [ + "libcutils", + "libutils", + "libbase", + "libbinder", + ], + }, + host: { + static_libs: [ + "libcutils", + "liblog", + "libutils", + "libbase", + "libbinder", + ], + }, darwin: { enabled: false, - } - } + }, + }, } cc_fuzz { |