You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
664 B
31 lines
664 B
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",
|
|
|
|
}
|