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.
37 lines
812 B
37 lines
812 B
// Copyright 2017 The Android Open Source Project |
|
|
|
subdirs = ["android"] |
|
|
|
//########################################################################## |
|
// Build fsstress |
|
|
|
cc_binary { |
|
name: "fsstress", |
|
host_supported: true, |
|
|
|
srcs: ["fsstress.c"], |
|
cflags: ["-W", "-Wall", "-Wno-macro-redefined"], |
|
system_shared_libs: ["libc", "libdl"], |
|
|
|
target: { |
|
darwin: { |
|
enabled: false, |
|
}, |
|
}, |
|
} |
|
|
|
//######################################################################## |
|
// Build add_ext4_encrypt |
|
|
|
cc_binary { |
|
name: "add_ext4_encrypt", |
|
host_supported: true, |
|
|
|
srcs: ["add_ext4_encrypt.c"], |
|
cflags: ["-W", "-Wall", "-Wno-macro-redefined"], |
|
shared_libs: [ |
|
"libext2fs", |
|
"libext2_com_err", |
|
], |
|
system_shared_libs: ["libc", "libdl"], |
|
}
|
|
|