aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/BUILD
diff options
context:
space:
mode:
authorGravatar Tim Shen <timshen@google.com>2018-08-30 11:20:16 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-08-30 11:29:03 -0700
commit09f2c342c0e74834bebf8045d5e77dcef8323539 (patch)
tree3a969695f54840366629df7f39e4da7f9ac103cd /tensorflow/core/BUILD
parent9e12f1df3270b5e0b310645e6c3cae9fbd3f5dfc (diff)
Remove (Mutable)ArraySlice implementation and alias them to absl::Span.
There are several API migrations happening: * ArraySlice's sub-slice constructor => .subspan * MutableArraySlice's container pointer constructor => absl::MakeSpan PiperOrigin-RevId: 210946124
Diffstat (limited to 'tensorflow/core/BUILD')
-rw-r--r--tensorflow/core/BUILD4
1 files changed, 3 insertions, 1 deletions
diff --git a/tensorflow/core/BUILD b/tensorflow/core/BUILD
index 7648db9c12..608b08efba 100644
--- a/tensorflow/core/BUILD
+++ b/tensorflow/core/BUILD
@@ -2471,6 +2471,7 @@ tf_cuda_library(
cc_header_only_library(
name = "framework_internal_headers_lib",
+ includes = ["../../external/com_google_absl"],
deps = [
":lib",
":lib_internal",
@@ -2559,6 +2560,7 @@ cc_header_only_library(
# ABSL headers get dropped, so we add them back here.
"@com_google_absl//absl/strings",
],
+ includes = ["../../external/com_google_absl"],
visibility = ["//visibility:public"],
deps = [
":framework",
@@ -2568,6 +2570,7 @@ cc_header_only_library(
cc_header_only_library(
name = "stream_executor_headers_lib",
+ includes = ["../../external/com_google_absl"],
visibility = ["//visibility:public"],
deps = [
":stream_executor",
@@ -3219,7 +3222,6 @@ tf_cc_tests(
"lib/core/status_test.cc",
"lib/core/stringpiece_test.cc",
"lib/core/threadpool_test.cc",
- "lib/gtl/array_slice_test.cc",
"lib/gtl/cleanup_test.cc",
"lib/gtl/compactptrset_test.cc",
"lib/gtl/edit_distance_test.cc",