1load("@rules_license//rules:license.bzl", "license") 2load("@rules_license//rules:license_kind.bzl", "license_kind") 3 4package( 5 default_applicable_licenses = [":license"], 6 default_visibility = ["//visibility:public"], 7) 8 9license( 10 name = "license", 11 license_kinds = [ 12 ":SPDX-license-identifier-Apache-2.0", 13 ], 14 license_text = "LICENSE-APACHE", 15 visibility = [":__subpackages__"], 16) 17 18license_kind( 19 name = "SPDX-license-identifier-Apache-2.0", 20 conditions = ["notice"], 21 url = "https://spdx.org/licenses/Apache-2.0.html", 22) 23 24cc_library( 25 name = "aemu-host-common-test-headers", 26 hdrs = glob([ 27 "host-common/testing/**/*.h", 28 "host-common/testing/**/*.hpp", 29 ]), 30 includes = ["include"], 31 visibility = ["//visibility:public"], 32 deps = ["//hardware/google/aemu/base:test-io"], 33) 34