1
0
mirror of https://github.com/google/nomulus synced 2026-01-06 21:47:31 +00:00

Remove Bazel build (#94)

* Remove bazel build

Also updated the build badge to reflect internal build status.
This commit is contained in:
Lai Jiang
2019-06-13 18:15:33 -04:00
committed by GitHub
parent aca18a1d4a
commit 8c5fc6410b
144 changed files with 2 additions and 8274 deletions

View File

@@ -1,28 +0,0 @@
package(default_visibility = ["//java/google/registry:registry_project"])
licenses(["notice"]) # Apache 2.0
py_binary(
name = "xml_to_index_yaml_translator",
srcs = ["xml_to_index_yaml_translator.py"],
python_version = "PY2",
deps = [":xml_to_index_yaml_translator_lib"],
)
py_library(
name = "xml_to_index_yaml_translator_lib",
srcs = ["xml_to_index_yaml_translator.py"],
deps = ["//python:python_directory_import"],
)
py_test(
name = "xml_to_index_yaml_translator_test",
size = "small",
srcs = ["xml_to_index_yaml_translator_test.py"],
data = [
"testdata/datastore-indexes.xml",
"testdata/index.yaml",
],
python_version = "PY2",
deps = [":xml_to_index_yaml_translator_lib"],
)