aboutsummaryrefslogtreecommitdiff
path: root/tools/libhost/Android.bp
blob: 4c9100f1589a3653a2b28794c81ffeeb46287cfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
cc_library_host_static {

    srcs: ["CopyFile.c"],

    cflags: [
        "-Werror",
        "-Wall",
    ],

    name: "libhost",
    target: {
        windows: {
            cflags: ["-Wno-unused-parameter"],
            enabled: true,
        },
    },
    local_include_dirs: ["include"],
    export_include_dirs: ["include"],
    stl: "none",

}