aboutsummaryrefslogtreecommitdiff
path: root/src/tools/ak/res/resxml/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/ak/res/resxml/BUILD')
-rw-r--r--src/tools/ak/res/resxml/BUILD24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/tools/ak/res/resxml/BUILD b/src/tools/ak/res/resxml/BUILD
new file mode 100644
index 0000000..c74aa68
--- /dev/null
+++ b/src/tools/ak/res/resxml/BUILD
@@ -0,0 +1,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",
+ ],
+)