tzh
2024-08-15 d4a1bd480003f3e1a0590bc46fbcb24f05652ca7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
// Copyright 2006 The Android Open Source Project
 
cc_binary {
    name: "vohci",
    cflags: [
        "-Wall",
        "-Werror",
        "-Wno-switch",
        "-Wno-unused-function",
        "-Wno-unused-parameter",
        "-Wno-unused-variable",
    ],
 
    srcs: ["vohci.c"],
 
    include_dirs: ["external/tinyalsa/include"],
 
    header_libs: ["libutils_headers"],
 
    shared_libs: [
        "libtinyalsa",
        "libcutils",
        "liblog",
    ],
 
    proprietary: true,
    init_rc: ["vohci.rc"],
}