huangcm
2025-07-01 2af87f2bbd5ba07d377b5a7f0ee0e96053f2d424
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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"],
}