aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorA. Cody Schuffelen <schuffelen@google.com>2021-04-30 03:04:38 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-04-30 03:04:38 +0000
commitf77b79b5d6c74652ba5048ffc5aa804f6d92efb3 (patch)
tree61d841dc12f982b1afaf7956176f05df58a9d98c
parent9d8c37008f8d22277aee69751f31a8ec05b4ad61 (diff)
parentf7bd8d3051b6c628157f6a396fb58ae299999a7b (diff)
downloadgoogle-fruit-f77b79b5d6c74652ba5048ffc5aa804f6d92efb3.tar.gz
Add vendor_available and apex_available to libfruit. am: 982e10c7fe am: f7bd8d3051
Original change: https://android-review.googlesource.com/c/platform/external/google-fruit/+/1651695 Change-Id: Iaecbc8c139ccb3da327fa264b58234243a26f0f2
-rw-r--r--Android.bp5
1 files changed, 5 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
index aad4a60..444c19c 100644
--- a/Android.bp
+++ b/Android.bp
@@ -40,8 +40,13 @@ license {
cc_library {
name: "libfruit",
host_supported: true,
+ vendor_available: true,
export_include_dirs: ["include", "configuration/android"],
srcs: ["src/**/*.cpp", ],
+ apex_available: [
+ "//apex_available:platform",
+ "//apex_available:anyapex",
+ ],
}
// TODO: tests written in python+pytest that calls back into compiler. unclear how to best proceed.