summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2022-10-18 17:59:09 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2022-10-18 17:59:09 +0000
commit7facdcca3d8f06f59b8584cb335d6a554718d361 (patch)
tree2ff5793b25da38e1869696627318b178ea0d4ef7
parent3ea0f312f5d10f8b8ccd0adc945382d4431656d6 (diff)
parent06a839fc77aa762aac6accc3d8ecc718ff05ecf3 (diff)
downloadcore-7facdcca3d8f06f59b8584cb335d6a554718d361.tar.gz
Merge "Remove an obsolete workaround."
-rw-r--r--libcutils/Android.bp34
1 files changed, 3 insertions, 31 deletions
diff --git a/libcutils/Android.bp b/libcutils/Android.bp
index 753edf768..b135e57bc 100644
--- a/libcutils/Android.bp
+++ b/libcutils/Android.bp
@@ -193,6 +193,9 @@ cc_library {
],
},
android: {
+ sanitize: {
+ misc_undefined: ["integer"],
+ },
static_libs: [
"libasync_safe",
],
@@ -209,37 +212,6 @@ cc_library {
],
},
- android_arm: {
- sanitize: {
- misc_undefined: ["integer"],
- },
- },
- android_arm64: {
- sanitize: {
- misc_undefined: ["integer"],
- },
- },
- android_riscv64: {
- sanitize: {
- misc_undefined: ["integer"],
- },
- },
-
- android_x86: {
- // TODO: This is to work around b/29412086.
- // Remove once __mulodi4 is available and move the "sanitize" block
- // to the android target.
- sanitize: {
- misc_undefined: [],
- },
- },
-
- android_x86_64: {
- sanitize: {
- misc_undefined: ["integer"],
- },
- },
-
// qtaguid.cpp loads libnetd_client.so with dlopen(). Since
// the interface of libnetd_client.so may vary between AOSP
// releases, exclude qtaguid.cpp from the VNDK-SP variant.