aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIvan Lozano <ivanlozano@google.com>2019-09-09 15:05:41 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-09-09 15:05:41 -0700
commitd7d80443c6e584421741fd3f7f80751aea69db95 (patch)
tree4e89f9d709752b324a1e1fa2ee99faae2d032173
parent93ff9ed8b119321bb88398197f7a11a15ba27c6b (diff)
parent8316e8cf412fd78d687bc4bbcb0842b054c99197 (diff)
downloadplatform_external_rust_crates_byteorder-d7d80443c6e584421741fd3f7f80751aea69db95.tar.gz
platform_external_rust_crates_byteorder-d7d80443c6e584421741fd3f7f80751aea69db95.tar.bz2
platform_external_rust_crates_byteorder-d7d80443c6e584421741fd3f7f80751aea69db95.zip
Add build file for libbyteorder. am: 45aa5d3957 am: 4ac4810638
am: 8316e8cf41 Change-Id: Idecc53a8247b279281cb7d1b3616fce810776937
-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",
+ ],
+}