Fix build by adding missing include.

PiperOrigin-RevId: 335655957
Change-Id: I1c6b1c03e255c1f347df940db2eca0a516243977
This commit is contained in:
Adrian Kuegel 2020-10-06 09:27:35 -07:00 committed by TensorFlower Gardener
parent f0702de8c1
commit 8b5e015c51
2 changed files with 3 additions and 0 deletions

View File

@ -85,6 +85,7 @@ tf_cc_test(
":profiler_client_impl",
"@com_google_absl//absl/memory",
"@com_google_absl//absl/time",
"@com_google_absl//absl/strings:str_format",
"//tensorflow/core:test",
"//tensorflow/core:test_main",
"//tensorflow/core/lib/core:errors",
@ -123,6 +124,7 @@ tf_cc_test(
tags = ["external"], # So that test suite reruns unconditionally.
deps = [
":remote_profiler_session_manager",
"@com_google_absl//absl/strings:str_format",
"@com_google_absl//absl/memory",
"@com_google_absl//absl/time",
"//tensorflow/core:test",

View File

@ -21,6 +21,7 @@ limitations under the License.
#include <string>
#include "absl/memory/memory.h"
#include "absl/strings/str_format.h"
#include "absl/time/clock.h"
#include "absl/time/time.h"
#include "tensorflow/core/platform/platform.h"