1package { 2 // See: http://go/android-license-faq 3 // A large-scale-change added 'default_applicable_licenses' to import 4 // all of the 'license_kinds' from "build_make_license" 5 // to get the below license kinds: 6 // legacy_restricted 7 default_applicable_licenses: ["build_make_license"], 8} 9 10cc_library_host_static { 11 12 srcs: ["CopyFile.c"], 13 14 cflags: [ 15 "-Werror", 16 "-Wall", 17 ], 18 19 name: "libhost", 20 target: { 21 windows: { 22 cflags: ["-Wno-unused-parameter"], 23 enabled: true, 24 }, 25 }, 26 local_include_dirs: ["include"], 27 export_include_dirs: ["include"], 28 stl: "none", 29 30} 31