diff options
| author | 2025-01-10 04:16:33 -0800 | |
|---|---|---|
| committer | 2025-01-10 04:16:33 -0800 | |
| commit | 3c663e9300c5fc9ce75f1c06b24969b2674c97fa (patch) | |
| tree | 63b9eca5401f79088578c205c7edd357a98b4bb8 | |
| parent | 2c457a6df6f8dc7b45f544bc983354ee8f9d9bd5 (diff) | |
| parent | 252c90b89e5f75e938a3bbd1e00fd9e3006d1d54 (diff) | |
Add java library for core icu4j for the fuzzer am: 252c90b89e
Original change: https://android-review.googlesource.com/c/platform/art/+/3445539
Change-Id: I046aad6b9d1c13bbc8f0ff260880aa223d07b573
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
| -rw-r--r-- | build/Android.bp | 13 | ||||
| -rw-r--r-- | tools/fuzzer/Android.bp | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/build/Android.bp b/build/Android.bp index e2d724b99e..e8a0b5424b 100644 --- a/build/Android.bp +++ b/build/Android.bp @@ -362,3 +362,16 @@ java_library { }, }, } + +// A version of core-icu4j only for the ART fuzzer. +java_library { + name: "core-icu4j-fuzzer", + visibility: [ + "//art/tools/fuzzer", + ], + static_libs: ["core-icu4j-for-host"], + stem: "core-icu4j", + compile_dex: true, + sdk_version: "none", + system_modules: "none", +} diff --git a/tools/fuzzer/Android.bp b/tools/fuzzer/Android.bp index d74c0f31ad..57dd1ec6ad 100644 --- a/tools/fuzzer/Android.bp +++ b/tools/fuzzer/Android.bp @@ -83,7 +83,7 @@ cc_defaults { ":okhttp", ":bouncycastle", ":apache-xml", - ":core-icu4j", + ":core-icu4j-fuzzer", ":conscrypt-fuzzer", ], } |