-
Notifications
You must be signed in to change notification settings - Fork 75.3k
Expand file tree
/
Copy pathBUILD
More file actions
78 lines (71 loc) · 1.77 KB
/
BUILD
File metadata and controls
78 lines (71 loc) · 1.77 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
67
68
69
70
71
72
73
74
75
76
77
78
load("//tensorflow:pytype.default.bzl", "pytype_strict_library")
package(
# copybara:uncomment default_applicable_licenses = ["//tensorflow:license"],
licenses = ["notice"],
)
# Important: this is a leaf library. It may not have any new dependencies inside TF proper.
# The sole exception is tf_export, to allow exporting symbols into the public namespace.
pytype_strict_library(
name = "core",
srcs = [
"__init__.py",
"core.py",
],
visibility = ["//tensorflow:__subpackages__"],
deps = [
":doc_typealias",
"//tensorflow/python:pywrap_tensorflow",
"//tensorflow/python/util:tf_export",
"//third_party/py/numpy",
"@pypi//typing_extensions",
],
)
pytype_strict_library(
name = "data",
srcs = ["data.py"],
visibility = [
"//tensorflow:__subpackages__",
],
deps = ["//tensorflow/python/util:tf_export"],
)
pytype_strict_library(
name = "distribute",
srcs = ["distribute.py"],
visibility = [
"//tensorflow:__subpackages__",
],
deps = [
"//tensorflow/python/util:tf_export",
"//tensorflow/tools/docs:doc_controls",
],
)
pytype_strict_library(
name = "internal",
srcs = ["internal.py"],
visibility = [
"//tensorflow:__subpackages__",
],
)
pytype_strict_library(
name = "trace",
srcs = ["trace.py"],
visibility = [
"//tensorflow:__subpackages__",
],
deps = [
":core",
"//tensorflow/python/util:tf_export",
"//tensorflow/tools/docs:doc_controls",
"@pypi//typing_extensions",
],
)
pytype_strict_library(
name = "doc_typealias",
srcs = [
"doc_typealias.py",
],
visibility = [
"//tensorflow:__subpackages__",
],
deps = [],
)