summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Vander Stoep <jeffv@google.com>2023-04-04 09:57:35 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-04-04 09:57:35 +0000
commit7e35e0e1fd92550b32a4253008291ddcb19bf860 (patch)
tree2ce832b3343f38c0e0e2cf946bd7fae274d4101b
parent45fc577ba2dc010112396304a26b64a73dd0696f (diff)
parenta472ee8bd83f03a51b6f14d84841d2eb6de1755b (diff)
downloadgrpcio-compiler-7e35e0e1fd92550b32a4253008291ddcb19bf860.tar.gz
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/grpcio-compiler/+/2502376 Change-Id: Ibfc457d04b98ab369bc50a6e00f48e70bed75081 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--Android.bp8
-rw-r--r--cargo2android.json3
-rw-r--r--patches/Android.bp.patch36
3 files changed, 44 insertions, 3 deletions
diff --git a/Android.bp b/Android.bp
index fb52b72..3af481e 100644
--- a/Android.bp
+++ b/Android.bp
@@ -47,8 +47,10 @@ rust_binary_host {
],
rustlibs: [
"libgrpcio_compiler",
- "libprotobuf",
+ "libprotobuf_deprecated",
],
+ product_available: true,
+ vendor_available: true,
}
rust_library_host {
@@ -64,6 +66,8 @@ rust_library_host {
"protobuf-codec",
],
rustlibs: [
- "libprotobuf",
+ "libprotobuf_deprecated",
],
+ product_available: true,
+ vendor_available: true,
}
diff --git a/cargo2android.json b/cargo2android.json
index 9b0d064..595ea16 100644
--- a/cargo2android.json
+++ b/cargo2android.json
@@ -1,5 +1,6 @@
{
+ "patch": "patches/Android.bp.patch",
"dependencies": true,
"run": true,
"tests": true
-} \ No newline at end of file
+}
diff --git a/patches/Android.bp.patch b/patches/Android.bp.patch
new file mode 100644
index 0000000..e0dbe5c
--- /dev/null
+++ b/patches/Android.bp.patch
@@ -0,0 +1,36 @@
+From ad56b17ba9a2ceb34a603a58899fe0469c46e2ed Mon Sep 17 00:00:00 2001
+From: Jeff Vander Stoep <jeffv@google.com>
+Date: Wed, 22 Mar 2023 15:35:13 +0100
+Subject: [PATCH] Use version 2.x of the protobuf crate
+
+Test: TH
+Bug: 270895633
+Change-Id: Ida6c42df913b57baadb0907f741627c3261a2f9c
+---
+ Android.bp | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/Android.bp b/Android.bp
+index fb52b72..36ef473 100644
+--- a/Android.bp
++++ b/Android.bp
+@@ -47,7 +47,7 @@ rust_binary_host {
+ ],
+ rustlibs: [
+ "libgrpcio_compiler",
+- "libprotobuf",
++ "libprotobuf_deprecated",
+ ],
+ }
+
+@@ -64,6 +64,6 @@ rust_library_host {
+ "protobuf-codec",
+ ],
+ rustlibs: [
+- "libprotobuf",
++ "libprotobuf_deprecated",
+ ],
+ }
+--
+2.40.0.348.gf938b09366-goog
+