aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Lozano <ivanlozano@google.com>2019-09-09 14:58:30 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-09-09 14:58:30 -0700
commit8316e8cf412fd78d687bc4bbcb0842b054c99197 (patch)
tree4e89f9d709752b324a1e1fa2ee99faae2d032173
parent93ff9ed8b119321bb88398197f7a11a15ba27c6b (diff)
parent4ac4810638e51f5fe35c37c33f0b33123fc6f8af (diff)
downloadbyteorder-8316e8cf412fd78d687bc4bbcb0842b054c99197.tar.gz
Add build file for libbyteorder. am: 45aa5d3957
am: 4ac4810638 Change-Id: I9bb136bd0f6de5d92d918495bdb5923b3fe4b637
-rw-r--r--Android.bp11
1 files changed, 11 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..063c62e
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,11 @@
+rust_library_rlib {
+ name: "libbyteorder",
+ host_supported: true,
+ crate_name: "byteorder",
+ srcs: ["src/lib.rs"],
+ edition: "2015",
+ features: [
+ "std",
+ "i128",
+ ],
+}