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 4licenses(["notice"]) 5 6go_library( 7 name = "resxml", 8 srcs = ["xml_parser.go"], 9 importpath = "src/tools/ak/res/resxml/resxml", 10 visibility = ["//src/tools/ak/liteparse:__subpackages__"], 11 deps = [ 12 "//src/tools/ak/res/respipe", 13 ], 14) 15 16go_test( 17 name = "resxml_test", 18 size = "small", 19 srcs = ["xml_parser_test.go"], 20 embed = [":resxml"], 21 deps = [ 22 "//src/tools/ak/res/respipe", 23 ], 24) 25