tensorflow_privacy/g3doc/BUILD
Michael Reneer 69d84d1892 Add TensorFlow Privacy BUILD and WORKSPACE files.
PiperOrigin-RevId: 429141704
2022-02-16 23:30:06 +00:00

18 lines
515 B
Text

load("@rules_python//python:defs.bzl", "py_binary")
package(default_visibility = ["//visibility:public"])
licenses(["notice"])
py_binary(
name = "build_docs",
srcs = ["build_docs.py"],
python_version = "PY3",
srcs_version = "PY3",
deps = [
"//tensorflow_privacy",
"//third_party/py/tensorflow_docs/api_generator:doc_controls",
"//third_party/py/tensorflow_docs/api_generator:generate_lib",
"//third_party/py/tensorflow_docs/api_generator:public_api",
],
)