forked from tensorflow/tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
56 lines (48 loc) · 958 Bytes
/
Copy pathBUILD
File metadata and controls
56 lines (48 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Description:
# Doc generator
licenses(["notice"]) # Apache 2.0
exports_files(["LICENSE"])
package(
default_visibility = ["//tensorflow:__subpackages__"],
)
py_binary(
name = "gen_cc_md",
srcs = ["gen_cc_md.py"],
srcs_version = "PY2AND3",
deps = ["//tensorflow:tensorflow_py"],
)
filegroup(
name = "doxy_config",
srcs = ["tf-doxy_for_md-config"],
)
sh_binary(
name = "gen_docs",
srcs = ["gen_docs.sh"],
data = [
":doxy_config",
":gen_cc_md",
"//tensorflow/python:gen_docs_combined",
],
)
sh_test(
name = "gen_docs_test",
size = "small",
srcs = [
"gen_docs_test.sh",
],
data = [
":gen_docs",
"//tensorflow/core:all_files",
"//tensorflow/python:all_files",
],
)
filegroup(
name = "all_files",
srcs = glob(
["**/*"],
exclude = [
"**/METADATA",
"**/OWNERS",
],
),
)