From 4f512f00e9f3473c76cd440da398462867b8dd74 Mon Sep 17 00:00:00 2001 From: Benjamin Kramer Date: Wed, 20 May 2020 01:37:59 -0700 Subject: [PATCH] [XLA] Unbreak the OSS build PiperOrigin-RevId: 312440902 Change-Id: I7dc3514e5612dd054cdef30990eede7a16d5d68a --- tensorflow/compiler/xla/service/BUILD | 1 + tensorflow/compiler/xla/service/hlo_lexer.cc | 1 + 2 files changed, 2 insertions(+) diff --git a/tensorflow/compiler/xla/service/BUILD b/tensorflow/compiler/xla/service/BUILD index a8f20827c6d..1591b3a95ba 100644 --- a/tensorflow/compiler/xla/service/BUILD +++ b/tensorflow/compiler/xla/service/BUILD @@ -4498,6 +4498,7 @@ cc_library( "//tensorflow/compiler/xla:xla_data_proto_cc", "//tensorflow/core:lib", "//tensorflow/core:regexp_internal", + "@com_google_absl//absl/base", "@com_google_absl//absl/strings", "@com_google_absl//absl/types:optional", ], diff --git a/tensorflow/compiler/xla/service/hlo_lexer.cc b/tensorflow/compiler/xla/service/hlo_lexer.cc index 314030fc5e8..5502665e886 100644 --- a/tensorflow/compiler/xla/service/hlo_lexer.cc +++ b/tensorflow/compiler/xla/service/hlo_lexer.cc @@ -17,6 +17,7 @@ limitations under the License. #include +#include "absl/base/casts.h" #include "absl/strings/ascii.h" #include "absl/strings/escaping.h" #include "absl/strings/numbers.h"