• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1package {
2    // See: http://go/android-license-faq
3    default_applicable_licenses: ["Android-Apache-2.0"],
4}
5
6cc_library_host_static {
7
8    srcs: ["CopyFile.c"],
9
10    cflags: [
11        "-Werror",
12        "-Wall",
13    ],
14
15    name: "libhost",
16    target: {
17        windows: {
18            cflags: ["-Wno-unused-parameter"],
19            enabled: true,
20        },
21    },
22    local_include_dirs: ["include"],
23    export_include_dirs: ["include"],
24    stl: "none",
25
26}
27