diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:49:25 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 15:49:25 +0000 |
commit | 464df1d5e5ab1322e2dd0a7796939fff1aeefa9a (patch) | |
tree | 6a403684e0978f0287d7f0ec0e5aab1fd31a59e1 /lib/uuid/Android.bp | |
parent | Initial commit. (diff) | |
download | e2fsprogs-464df1d5e5ab1322e2dd0a7796939fff1aeefa9a.tar.xz e2fsprogs-464df1d5e5ab1322e2dd0a7796939fff1aeefa9a.zip |
Adding upstream version 1.47.0.upstream/1.47.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'lib/uuid/Android.bp')
-rw-r--r-- | lib/uuid/Android.bp | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/lib/uuid/Android.bp b/lib/uuid/Android.bp new file mode 100644 index 0000000..3e6048d --- /dev/null +++ b/lib/uuid/Android.bp @@ -0,0 +1,54 @@ +// Copyright 2017 The Android Open Source Project + +package { + default_applicable_licenses: ["external_e2fsprogs_lib_uuid_license"], +} + +// Added automatically by a large-scale-change +// See: http://go/android-license-faq +license { + name: "external_e2fsprogs_lib_uuid_license", + visibility: [":__subpackages__"], + license_kinds: [ + "SPDX-license-identifier-BSD", + ], + license_text: [ + "COPYING", + ], +} + +cc_library { + name: "libext2_uuid", + host_supported: true, + ramdisk_available: true, + vendor_ramdisk_available: true, + recovery_available: true, + vendor_available: true, + product_available: true, + unique_host_soname: true, + defaults: ["e2fsprogs-defaults"], + srcs: [ + "clear.c", + "compare.c", + "copy.c", + "gen_uuid.c", + "isnull.c", + "pack.c", + "parse.c", + "unpack.c", + "unparse.c", + "uuid_time.c", + ], + target: { + windows: { + enabled: true, + }, + }, + header_libs: ["libext2-headers"], + export_include_dirs: ["."], + export_header_lib_headers: ["libext2-headers"], + apex_available: [ + "//apex_available:platform", + "com.android.virt", + ], +} |