mirror of
https://git.kernel.org/pub/scm/fs/ext2/e2fsprogs.git
synced 2024-11-23 18:14:25 +08:00
c19b18f84b
From AOSP commit: 2002d7f1fc: Use -Werror in external/e2fsprogs ... which got reverted and reapplied in a confusing way. Signed-off-by: Theodore Ts'o <tytso@mit.edu>
20 lines
436 B
Plaintext
20 lines
436 B
Plaintext
// Copyright 2017 The Android Open Source Project
|
|
|
|
subdirs = ["android"]
|
|
|
|
//########################################################################
|
|
// Build add_ext4_encrypt
|
|
|
|
cc_binary {
|
|
name: "add_ext4_encrypt",
|
|
host_supported: true,
|
|
defaults: ["e2fsprogs-defaults"],
|
|
|
|
srcs: ["add_ext4_encrypt.c"],
|
|
shared_libs: [
|
|
"libext2fs",
|
|
"libext2_com_err",
|
|
],
|
|
system_shared_libs: ["libc", "libdl"],
|
|
}
|