• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Copyright 2017 The Android Open Source Project
2
3subdirs = ["android"]
4
5//########################################################################
6// Build add_ext4_encrypt
7
8cc_binary {
9    name: "add_ext4_encrypt",
10    host_supported: true,
11    defaults: ["e2fsprogs-defaults"],
12
13    srcs: ["add_ext4_encrypt.c"],
14    shared_libs: [
15        "libext2fs",
16        "libext2_com_err",
17    ],
18    system_shared_libs: ["libc", "libdl"],
19}
20