You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
436 B
19 lines
436 B
// 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"], |
|
}
|
|
|