Internal refactoring, noop in oss.

PiperOrigin-RevId: 335070962
Change-Id: I3dc0767cc10e44833471bbbce21b33dd1be16530
This commit is contained in:
Gunhan Gulsoy 2020-10-02 11:52:49 -07:00 committed by TensorFlower Gardener
parent 91a1094670
commit eed3ab97e5

View File

@ -42,13 +42,15 @@ cc_library(
name = "reader", name = "reader",
srcs = ["reader.cc"], srcs = ["reader.cc"],
hdrs = ["reader.h"], hdrs = ["reader.h"],
deps = [":constants"] + if_not_mobile([ deps = [
":constants",
"//tensorflow/core:protos_all_cc",
] + if_not_mobile([
# TODO(b/111634734): :lib and :protos_all contain dependencies that # TODO(b/111634734): :lib and :protos_all contain dependencies that
# cannot be built on mobile platforms. Instead, include the appropriate # cannot be built on mobile platforms. Instead, include the appropriate
# tf_lib depending on the build platform. # tf_lib depending on the build platform.
"@com_google_absl//absl/memory:memory", "@com_google_absl//absl/memory:memory",
"//tensorflow/core:lib", "//tensorflow/core:lib",
"//tensorflow/core:protos_all_cc",
]), ]),
) )