summaryrefslogtreecommitdiff
path: root/tools/libhost/Android.bp
blob: a83f2e770eb70c77487fc03a3614c8271c4575fe (plain)
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
29
30
package {
    // See: http://go/android-license-faq
    // A large-scale-change added 'default_applicable_licenses' to import
    // all of the 'license_kinds' from "build_make_license"
    // to get the below license kinds:
    //   legacy_restricted
    default_applicable_licenses: ["build_make_license"],
}

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",

}