aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/tensorboard/BUILD
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <nobody@tensorflow.org>2016-01-29 09:34:18 -0800
committerGravatar Vijay Vasudevan <vrv@google.com>2016-01-29 20:15:13 -0800
commit8a59748c087a2fee535c0d5067dbabb01920e812 (patch)
tree179f23b84fb0c47cf17d9551f62e9a6c11c32f79 /tensorflow/tensorboard/BUILD
parentfaf747a15d4efc8fff03a10a3fdb37393197c2d3 (diff)
Use cc_binary rather than cc_library to reduce size of native library in APK from 5.5mb to 3.2mb (compressed).
Change: 113369407
Diffstat (limited to 'tensorflow/tensorboard/BUILD')
-rw-r--r--tensorflow/tensorboard/BUILD8
1 files changed, 4 insertions, 4 deletions
diff --git a/tensorflow/tensorboard/BUILD b/tensorflow/tensorboard/BUILD
index bd4229b5f4..52518130f6 100644
--- a/tensorflow/tensorboard/BUILD
+++ b/tensorflow/tensorboard/BUILD
@@ -15,7 +15,7 @@ filegroup(
py_library(
name = "tensorboard_handler",
- srcs = ["tensorboard_handler.py"],
+ srcs = ["backend/tensorboard_handler.py"],
deps = [
":float_wrapper",
"//tensorflow/python:platform",
@@ -26,14 +26,14 @@ py_library(
py_library(
name = "float_wrapper",
- srcs = ["float_wrapper.py"],
+ srcs = ["backend/float_wrapper.py"],
srcs_version = "PY2AND3",
)
py_test(
name = "float_wrapper_test",
size = "small",
- srcs = ["float_wrapper_test.py"],
+ srcs = ["backend/float_wrapper_test.py"],
deps = [
":float_wrapper",
"//tensorflow/python:platform_test",
@@ -43,7 +43,7 @@ py_test(
py_binary(
name = "tensorboard",
- srcs = ["tensorboard.py"],
+ srcs = ["backend/tensorboard.py"],
data = [":tensorboard_frontend"],
deps = [
":tensorboard_handler",