forked from tensorflow/tensorflow
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBUILD
More file actions
154 lines (137 loc) · 3.67 KB
/
BUILD
File metadata and controls
154 lines (137 loc) · 3.67 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
# Description:
# TensorFlow Java API.
package(default_visibility = ["//visibility:private"])
licenses(["notice"]) # Apache 2.0
java_library(
name = "tensorflow",
srcs = glob(["src/main/java/org/tensorflow/*.java"]),
data = [":libtensorflow_jni"],
visibility = ["//visibility:public"],
)
java_library(
name = "testutil",
testonly = 1,
srcs = ["src/test/java/org/tensorflow/TestUtil.java"],
deps = [":tensorflow"],
)
java_test(
name = "GraphTest",
size = "small",
srcs = ["src/test/java/org/tensorflow/GraphTest.java"],
test_class = "org.tensorflow.GraphTest",
deps = [
":tensorflow",
":testutil",
"//external:junit",
],
)
java_test(
name = "OperationBuilderTest",
size = "small",
srcs = ["src/test/java/org/tensorflow/OperationBuilderTest.java"],
test_class = "org.tensorflow.OperationBuilderTest",
deps = [
":tensorflow",
":testutil",
"//external:junit",
],
)
java_test(
name = "SessionTest",
size = "small",
srcs = ["src/test/java/org/tensorflow/SessionTest.java"],
test_class = "org.tensorflow.SessionTest",
deps = [
":tensorflow",
":testutil",
"//external:junit",
],
)
java_test(
name = "TensorFlowTest",
size = "small",
srcs = ["src/test/java/org/tensorflow/TensorFlowTest.java"],
test_class = "org.tensorflow.TensorFlowTest",
deps = [
":tensorflow",
"//external:junit",
],
)
java_test(
name = "TensorTest",
size = "small",
srcs = ["src/test/java/org/tensorflow/TensorTest.java"],
test_class = "org.tensorflow.TensorTest",
deps = [
":tensorflow",
"//external:junit",
],
)
filegroup(
name = "libtensorflow_jni",
srcs = select({
"//tensorflow:darwin": [":libtensorflow_jni.dylib"],
"//conditions:default": [":libtensorflow_jni.so"],
}),
)
LINKER_VERSION_SCRIPT = ":config/version_script.lds"
LINKER_EXPORTED_SYMBOLS = ":config/exported_symbols.lds"
cc_binary(
name = "libtensorflow_jni.so",
# Set linker options to strip out anything except the JNI
# symbols from the library. This reduces the size of the library
# considerably (~50% as of January 2017).
linkopts = select({
"//tensorflow:darwin": [
"-Wl,-exported_symbols_list", # This line must be directly followed by LINKER_EXPORTED_SYMBOLS
LINKER_EXPORTED_SYMBOLS,
],
"//tensorflow:windows": [],
"//conditions:default": [
"-z defs",
"-s",
"-Wl,--version-script", # This line must be directly followed by LINKER_VERSION_SCRIPT
LINKER_VERSION_SCRIPT,
],
}),
linkshared = 1,
linkstatic = 1,
deps = [
"//tensorflow/java/src/main/native",
LINKER_VERSION_SCRIPT,
LINKER_EXPORTED_SYMBOLS,
],
)
genrule(
name = "pom",
outs = ["pom.xml"],
cmd = "$(location generate_pom) >$@",
output_to_bindir = 1,
tools = [":generate_pom"],
)
cc_binary(
name = "generate_pom",
srcs = ["generate_pom.cc"],
deps = ["//tensorflow/c:c_api"],
)
# System.loadLibrary() on OS X looks for ".dylib" or ".jnilib"
# and no ".so". If and when https://github.com/bazelbuild/bazel/issues/914
# is resolved, perhaps this workaround rule can be removed.
genrule(
name = "darwin-compat",
srcs = [":libtensorflow_jni.so"],
outs = ["libtensorflow_jni.dylib"],
cmd = "cp $< $@",
output_to_bindir = 1,
)
filegroup(
name = "all_files",
srcs = glob(
["**/*"],
exclude = [
"**/METADATA",
"**/OWNERS",
],
),
visibility = ["//tensorflow:__subpackages__"],
)