2021-02-13 06:42:54 +01:00
|
|
|
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"],
|
|
|
|
}
|
|
|
|
|
2016-06-06 23:41:32 +02:00
|
|
|
cc_library_host_static {
|
|
|
|
|
|
|
|
srcs: ["CopyFile.c"],
|
|
|
|
|
|
|
|
cflags: [
|
|
|
|
"-Werror",
|
|
|
|
"-Wall",
|
|
|
|
],
|
|
|
|
|
|
|
|
name: "libhost",
|
|
|
|
target: {
|
|
|
|
windows: {
|
2017-11-30 03:47:29 +01:00
|
|
|
cflags: ["-Wno-unused-parameter"],
|
2016-06-06 23:41:32 +02:00
|
|
|
enabled: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
local_include_dirs: ["include"],
|
|
|
|
export_include_dirs: ["include"],
|
|
|
|
stl: "none",
|
|
|
|
|
|
|
|
}
|