Make standalone dataset visible internally

This CL also puts the load statements before the package statement to be consistent with  nearby BUILD files.

PiperOrigin-RevId: 263623804
This commit is contained in:
Andrew Audibert 2019-08-15 12:59:59 -07:00 committed by TensorFlower Gardener
parent 9cfcec4123
commit 162e9cc3e6

View File

@ -1,10 +1,13 @@
package(
licenses = ["notice"], # Apache 2.0
)
load("//tensorflow:tensorflow.bzl", "tf_cc_test")
load("//tensorflow/core/platform:default/build_config.bzl", "tf_protos_all")
package(
default_visibility = [
"//tensorflow:internal",
],
licenses = ["notice"], # Apache 2.0
)
cc_library(
name = "standalone",
srcs = ["standalone.cc"],