xref: /aosp_15_r20/external/bazelbuild-rules_android/src/tools/ak/res/resxml/BUILD (revision 9e965d6fece27a77de5377433c2f7e6999b8cc0b)
1load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
2load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")
3
4package(default_applicable_licenses = ["//:license"])
5
6licenses(["notice"])
7
8go_library(
9    name = "resxml",
10    srcs = ["xml_parser.go"],
11    importpath = "src/tools/ak/res/resxml/resxml",
12    visibility = ["//src/tools/ak/liteparse:__subpackages__"],
13    deps = [
14        "//src/tools/ak/res/respipe",
15    ],
16)
17
18go_test(
19    name = "resxml_test",
20    size = "small",
21    srcs = ["xml_parser_test.go"],
22    embed = [":resxml"],
23    deps = [
24        "//src/tools/ak/res/respipe",
25    ],
26)
27