aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2019-08-23 16:56:40 -0700
committerColin Cross <ccross@android.com>2019-09-04 12:56:30 -0700
commitb7ae2affb13dcb5663a272d1ced0fd20a490de70 (patch)
tree9ad2b09f245621b450306a681783b1070a26cc07
parenta548da1bee2041a42f188b21d8a04e48b8ad66e5 (diff)
downloadprotobuf-b7ae2affb13dcb5663a272d1ced0fd20a490de70.tar.gz
Remove libprotobuf-cpp-*-rtti modules
Remove the libprotobuf-cpp-*-rtti modules, nothing is using them any more. There are still some references to libprotobuf-cpp-full-rtti in PRODUCT_PACKAGES for some products, but they are unused and will be silently ignored once the module is removed. Bug: 117607748 Bug: 119619080 Test: m checkbuild Change-Id: Idbae60ea3c2aa0f61721ee17d9a094fbd69a3513
-rw-r--r--Android.bp26
1 files changed, 0 insertions, 26 deletions
diff --git a/Android.bp b/Android.bp
index 5b9100525..f0f13879e 100644
--- a/Android.bp
+++ b/Android.bp
@@ -121,17 +121,6 @@ cc_library_static {
defaults: ["libprotobuf-cpp-lite-defaults"],
}
-// C++ lite library + rtti (libc++ flavored for the platform and host)
-// =======================================================
-cc_library_shared {
- name: "libprotobuf-cpp-lite-rtti",
- host_supported: true,
- vendor_available: true,
- defaults: ["libprotobuf-cpp-lite-defaults"],
-
- rtti: true,
-}
-
// C++ full library
// =======================================================
cc_defaults {
@@ -231,21 +220,6 @@ cc_library {
},
}
-// C++ full library + rtti for the platform and host
-// =======================================================
-cc_library_shared {
- name: "libprotobuf-cpp-full-rtti",
- defaults: ["libprotobuf-cpp-full-defaults"],
- vendor_available: true,
-
- rtti: true,
- target: {
- android: {
- shared_libs: ["liblog"],
- },
- },
-}
-
// Compiler library for the host
// =======================================================
cc_library {