summaryrefslogtreecommitdiffstats
path: root/Android.bp
diff options
context:
space:
mode:
Diffstat (limited to 'Android.bp')
-rw-r--r--Android.bp21
1 files changed, 21 insertions, 0 deletions
diff --git a/Android.bp b/Android.bp
new file mode 100644
index 0000000..d0e2594
--- /dev/null
+++ b/Android.bp
@@ -0,0 +1,21 @@
+// Copyright 2020 The Android Open Source Project
+
+cc_library_headers {
+ name: "libexfatprogs-headers",
+ export_include_dirs: [
+ "include",
+ "mkfs",
+ "fsck",
+ "tune",
+ "label",
+ "dump",
+ "exfat2img",
+ ],
+}
+
+cc_defaults {
+ name: "exfatprogs-defaults",
+ header_libs: ["libexfatprogs-headers"],
+ export_header_lib_headers: ["libexfatprogs-headers"],
+ cflags: ["-D_FILE_OFFSET_BITS=64"],
+}