]> git.ipfire.org Git - thirdparty/e2fsprogs.git/blob - lib/uuid/Android.bp
AOSP: Add assemble_cvd to com.android.virt
[thirdparty/e2fsprogs.git] / lib / uuid / Android.bp
1 // Copyright 2017 The Android Open Source Project
2
3 cc_library {
4 name: "libext2_uuid",
5 host_supported: true,
6 ramdisk_available: true,
7 vendor_ramdisk_available: true,
8 recovery_available: true,
9 vendor_available: true,
10 product_available: true,
11 unique_host_soname: true,
12 defaults: ["e2fsprogs-defaults"],
13 srcs: [
14 "clear.c",
15 "compare.c",
16 "copy.c",
17 "gen_uuid.c",
18 "isnull.c",
19 "pack.c",
20 "parse.c",
21 "unpack.c",
22 "unparse.c",
23 "uuid_time.c",
24 ],
25 cflags: [
26 "-Wno-unused-function",
27 "-Wno-unused-parameter",
28 ],
29 target: {
30 windows: {
31 // Cannot suppress the _WIN32_WINNT redefined warning.
32 cflags: ["-Wno-error"],
33 include_dirs: [ "external/e2fsprogs/include/mingw" ],
34 enabled: true
35 },
36 },
37 header_libs: ["libext2-headers"],
38 export_include_dirs: ["."],
39 export_header_lib_headers: ["libext2-headers"],
40 apex_available: [
41 "//apex_available:platform",
42 "com.android.virt",
43 ],
44 }