aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/core/platform/s3/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/core/platform/s3/BUILD')
-rw-r--r--tensorflow/core/platform/s3/BUILD14
1 files changed, 6 insertions, 8 deletions
diff --git a/tensorflow/core/platform/s3/BUILD b/tensorflow/core/platform/s3/BUILD
index 21038cfeb1..41184b6fd9 100644
--- a/tensorflow/core/platform/s3/BUILD
+++ b/tensorflow/core/platform/s3/BUILD
@@ -16,10 +16,10 @@ load(
tf_cc_binary(
name = "s3_file_system.so",
srcs = [
+ "aws_crypto.cc",
+ "aws_crypto.h",
"aws_logging.cc",
"aws_logging.h",
- "s3_crypto.cc",
- "s3_crypto.h",
"s3_file_system.cc",
"s3_file_system.h",
],
@@ -40,16 +40,14 @@ tf_cc_binary(
)
cc_library(
- name = "s3_crypto",
+ name = "aws_crypto",
srcs = [
- "s3_crypto.cc",
+ "aws_crypto.cc",
],
hdrs = [
- "s3_crypto.h",
+ "aws_crypto.h",
],
deps = [
- "//tensorflow/core:lib",
- "//tensorflow/core:lib_internal",
"@aws",
"@boringssl//:crypto",
],
@@ -81,8 +79,8 @@ cc_library(
"s3_file_system.h",
],
deps = [
+ ":aws_crypto",
":aws_logging",
- ":s3_crypto",
"//tensorflow/core:lib",
"//tensorflow/core:lib_internal",
"@aws",