forked from tensorflow/tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
66 lines (63 loc) · 2.02 KB
/
BUILD
File metadata and controls
66 lines (63 loc) · 2.02 KB
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
57
58
59
60
61
62
63
64
65
66
load("//tensorflow:tensorflow.bzl", "py_tests")
package(
# copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
licenses = ["notice"],
)
py_library(
name = "summary",
srcs = glob(
["*.py"],
exclude = [
"fake*",
"*_test.py",
],
),
srcs_version = "PY3",
visibility = ["//visibility:public"],
deps = [
"//tensorflow/core:protos_all_py",
"//tensorflow/python:array_ops",
"//tensorflow/python:client",
"//tensorflow/python:lib",
"//tensorflow/python:logging_ops_gen",
"//tensorflow/python:platform",
"//tensorflow/python:pywrap_tensorflow",
"//tensorflow/python:summary_op_util",
"//tensorflow/python:summary_ops_gen",
"//tensorflow/python:summary_ops_v2",
"//tensorflow/python/distribute:summary_op_util",
"//tensorflow/python/eager:context",
"//tensorflow/python/framework",
"//tensorflow/python/framework:constant_op",
"//tensorflow/python/framework:for_generated_wrappers",
"//tensorflow/python/summary/writer",
"//tensorflow/python/training:training_util",
"//tensorflow/python/util",
],
)
py_tests(
name = "summary_tests",
size = "small",
srcs = [
"plugin_asset_test.py",
"summary_iterator_test.py",
"summary_test.py",
"summary_v2_test.py",
],
python_version = "PY3",
deps = [
":summary",
"//tensorflow/core:protos_all_py",
"//tensorflow/python:array_ops",
"//tensorflow/python:client_testlib",
"//tensorflow/python:platform",
"//tensorflow/python:platform_test",
"//tensorflow/python:summary_ops_v2",
"//tensorflow/python:variables",
"//tensorflow/python/framework",
"//tensorflow/python/framework:for_generated_wrappers",
"//tensorflow/python/framework:test_lib",
"//tensorflow/python/summary/writer",
"//tensorflow/python/training:training_util",
],
)