From f06dc5df83682bac66e9551c7a2a22321cd91e40 Mon Sep 17 00:00:00 2001 From: Jeff Vander Stoep Date: Fri, 4 Dec 2020 14:24:24 +0100 Subject: Add Android.bp Apply patch to remove assumption about cargo env variables. Bug: 155855709 Test: mm Change-Id: I1a90f607d34c01c69b60cc71cd22ea8562e505aa --- Android.bp | 39 +++++++++++++++++++++++++++++++++++++++ patches/env.diff | 16 ++++++++++++++++ src/ffi.rs | 5 ++++- 3 files changed, 59 insertions(+), 1 deletion(-) create mode 100644 Android.bp create mode 100644 patches/env.diff diff --git a/Android.bp b/Android.bp new file mode 100644 index 0000000..9e84e00 --- /dev/null +++ b/Android.bp @@ -0,0 +1,39 @@ +// This file is generated by cargo2android.py --run --device --dependencies. + + +rust_library { + name: "libquiche", + host_supported: true, + crate_name: "quiche", + srcs: ["src/lib.rs"], + edition: "2018", + features: [ + "boringssl", + "default", + ], + rustlibs: [ + "liblazy_static", + "liblibc", + "liblibm", + "liblog_rust", + "libring", + ], + shared_libs: [ + "libcrypto", + "libssl", + ], +} + + +// dependent_library ["feature_list"] +// cc-1.0.65 +// cfg-if-0.1.10 +// cmake-0.1.45 +// lazy_static-1.4.0 +// libc-0.2.80 "default,std" +// libm-0.2.1 "default" +// log-0.4.11 "std" +// once_cell-1.5.2 "alloc,std" +// ring-0.16.17 "alloc,default,dev_urandom_fallback,once_cell" +// spin-0.5.2 +// untrusted-0.7.1 diff --git a/patches/env.diff b/patches/env.diff new file mode 100644 index 0000000..39629cf --- /dev/null +++ b/patches/env.diff @@ -0,0 +1,16 @@ +diff --git a/src/ffi.rs b/src/ffi.rs +index 13d98cd..39564dc 100644 +--- a/src/ffi.rs ++++ b/src/ffi.rs +@@ -42,7 +42,10 @@ use crate::*; + + #[no_mangle] + pub extern fn quiche_version() -> *const u8 { +- static VERSION: &str = concat!(env!("CARGO_PKG_VERSION"), "\0"); ++ //static VERSION: &str = concat!(env!("CARGO_PKG_VERSION"), "\0"); ++ // ANDROID's build system doesn't support environment variables ++ // so we hardcode the package version here. ++ static VERSION: &str = concat!("0.6.0", "\0"); + VERSION.as_ptr() + } + diff --git a/src/ffi.rs b/src/ffi.rs index 13d98cd..39564dc 100644 --- a/src/ffi.rs +++ b/src/ffi.rs @@ -42,7 +42,10 @@ use crate::*; #[no_mangle] pub extern fn quiche_version() -> *const u8 { - static VERSION: &str = concat!(env!("CARGO_PKG_VERSION"), "\0"); + //static VERSION: &str = concat!(env!("CARGO_PKG_VERSION"), "\0"); + // ANDROID's build system doesn't support environment variables + // so we hardcode the package version here. + static VERSION: &str = concat!("0.6.0", "\0"); VERSION.as_ptr() } -- cgit v1.2.3