platform_build/tools/libhost/Android.bp
Bob Badour d2c7c08e7c Fix licenses and license texts.
Use Android-Apache-2.0 for all Apache 2.0

Remove legacy_restricted (no longer appears in code).

Remove Android.bp which did not build anything but was a placeholder
for the missing license texts.

Test: m nothing
Change-Id: Ia491a59c735ca20afda9b4bbac9d8b33dbf8874e
2022-01-24 16:19:41 -08:00

26 lines
464 B
Text

package {
// See: http://go/android-license-faq
default_applicable_licenses: ["Android-Apache-2.0"],
}
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",
}