Remove dependence on core/lib/core/refcount under tensorflow/core/platform.

Library has been moved to platform/refcount.h/cc

PiperOrigin-RevId: 283167865
Change-Id: I84489ff9603cf010605c6f3b6be6c4dcabf10183
This commit is contained in:
Gunhan Gulsoy 2019-11-30 15:18:13 -08:00 committed by TensorFlower Gardener
parent 9a691fd496
commit c4dae6499d
2 changed files with 2 additions and 2 deletions
tensorflow/core/platform

View File

@ -601,11 +601,11 @@ cc_library(
deps = [
":platform",
":protobuf",
":refcount",
":stringpiece",
":strcat",
":types",
"//tensorflow/core/lib/core:coding",
"//tensorflow/core/lib/core:refcount",
] + tf_additional_tensor_coding_deps(),
)

View File

@ -19,9 +19,9 @@ limitations under the License.
#include <string>
#include "tensorflow/core/lib/core/refcount.h"
#include "tensorflow/core/platform/platform.h"
#include "tensorflow/core/platform/protobuf.h"
#include "tensorflow/core/platform/refcount.h"
#include "tensorflow/core/platform/stringpiece.h"
#include "tensorflow/core/platform/types.h"