blob: a29d3954d2ef0a5fb6882c17dec23c30ea3817d4 [file] [log] [blame]
load("@rules_license//rules:license.bzl", "license")
load("@rules_license//rules:license_kind.bzl", "license_kind")
package(
default_applicable_licenses = [":license"],
default_visibility = ["//visibility:public"],
)
license(
name = "license",
license_kinds = [
":SPDX-license-identifier-Apache-2.0",
],
license_text = "LICENSE-APACHE",
visibility = [":__subpackages__"],
)
license_kind(
name = "SPDX-license-identifier-Apache-2.0",
conditions = ["notice"],
url = "https://spdx.org/licenses/Apache-2.0.html",
)
cc_library(
name = "aemu-host-common-test-headers",
hdrs = glob([
"host-common/testing/**/*.h",
"host-common/testing/**/*.hpp",
]),
includes = ["include"],
visibility = ["//visibility:public"],
deps = ["//hardware/google/aemu/base:test-io"],
)