From 89ddedbb40a9a817ab65303918411d42fbeec247 Mon Sep 17 00:00:00 2001 From: Nathan Luehr Date: Thu, 14 Jan 2021 14:36:46 -0600 Subject: [PATCH] Correctly order deps in BUILD files. --- tensorflow/c/eager/BUILD | 2 +- tensorflow/compiler/xla/client/lib/BUILD | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tensorflow/c/eager/BUILD b/tensorflow/c/eager/BUILD index 16c9aeb53b0..0ccc7f1809c 100644 --- a/tensorflow/c/eager/BUILD +++ b/tensorflow/c/eager/BUILD @@ -427,9 +427,9 @@ tf_cuda_cc_test( "//tensorflow/c:tf_status_helper", "//tensorflow/c:tf_tensor_internal", "//tensorflow/c/experimental/ops", - "//tensorflow/core/platform:tensor_float_32_utils", "//tensorflow/core:test", "//tensorflow/core:test_main", + "//tensorflow/core/platform:tensor_float_32_utils", "@com_google_absl//absl/types:span", ], ) diff --git a/tensorflow/compiler/xla/client/lib/BUILD b/tensorflow/compiler/xla/client/lib/BUILD index 6c41ce8dcf1..fd770b6a780 100644 --- a/tensorflow/compiler/xla/client/lib/BUILD +++ b/tensorflow/compiler/xla/client/lib/BUILD @@ -537,8 +537,8 @@ xla_test( "//tensorflow/compiler/xla/tests:literal_test_util", "//tensorflow/compiler/xla/tests:test_macros_header", "//tensorflow/compiler/xla/tests:xla_internal_test_main", - "//tensorflow/core/platform:tensor_float_32_utils", "//tensorflow/core:test", + "//tensorflow/core/platform:tensor_float_32_utils", ], )