aboutsummaryrefslogtreecommitdiff
path: root/src/tools/ak/res/resxml/BUILD
blob: c74aa6808a1ef50a3b5ce2f3312ab57ccb34ba99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
load("@io_bazel_rules_go//proto:def.bzl", "go_proto_library")
load("@io_bazel_rules_go//go:def.bzl", "go_binary", "go_library", "go_test")

licenses(["notice"])

go_library(
    name = "resxml",
    srcs = ["xml_parser.go"],
    importpath = "src/tools/ak/res/resxml/resxml",
    visibility = ["//src/tools/ak/liteparse:__subpackages__"],
    deps = [
        "//src/tools/ak/res/respipe",
    ],
)

go_test(
    name = "resxml_test",
    size = "small",
    srcs = ["xml_parser_test.go"],
    embed = [":resxml"],
    deps = [
        "//src/tools/ak/res/respipe",
    ],
)