Run buildifier on third part aws bazel files

This commit is contained in:
Rahul Huilgol 2020-02-06 22:54:57 +00:00
parent 7b2f406c35
commit 0cea453964
5 changed files with 27 additions and 32 deletions

View File

@ -64,6 +64,13 @@ cc_library(
hdrs = [
"aws-cpp-sdk-core/include/aws/core/SDKConfig.h",
],
copts = [
"-DENABLE_OPENSSL_ENCRYPTION",
"-DAWS_SDK_VERSION_MAJOR=1",
"-DAWS_SDK_VERSION_MINOR=7",
"-DAWS_SDK_VERSION_PATCH=266",
"-DOPENSSL_IS_BORINGSSL",
],
defines = select({
"@org_tensorflow//tensorflow:linux_aarch64": [
"PLATFORM_LINUX",
@ -92,18 +99,11 @@ cc_library(
"aws-cpp-sdk-s3/include/",
],
deps = [
"@curl",
"@boringssl//:crypto",
"@aws-c-common",
"@aws-c-event-stream",
"@aws-checksums",
],
copts = [
"-DENABLE_OPENSSL_ENCRYPTION",
"-DAWS_SDK_VERSION_MAJOR=1",
"-DAWS_SDK_VERSION_MINOR=7",
"-DAWS_SDK_VERSION_PATCH=266",
"-DOPENSSL_IS_BORINGSSL",
"@boringssl//:crypto",
"@curl",
],
)

View File

@ -31,7 +31,7 @@ cc_library(
}) + glob([
"source/**/*.c",
"include/**/*.h",
"include/**/*.inl"
"include/**/*.inl",
]),
hdrs = [
"include/aws/common/config.h",
@ -40,7 +40,6 @@ cc_library(
"include/",
],
deps = [
],
copts = [
"-std=c99",
@ -64,4 +63,3 @@ template_rule(
"cmakedefine AWS_HAVE_EXECINFO": "define AWS_HAVE_EXECINFO",
},
)

View File

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
exports_files(["LICENSE"])
cc_library(
name = "aws-c-event-stream",
srcs = glob([

View File

@ -7,7 +7,6 @@ licenses(["notice"]) # Apache 2.0
exports_files(["LICENSE"])
cc_library(
name = "aws-checksums",
srcs = glob([

View File

@ -21,7 +21,7 @@ def repo():
name = "aws-c-common",
urls = [
"http://mirror.tensorflow.org/github.com/awslabs/aws-c-common/archive/v0.4.29.tar.gz",
"https://github.com/awslabs/aws-c-common/archive/v0.4.29.tar.gz"
"https://github.com/awslabs/aws-c-common/archive/v0.4.29.tar.gz",
],
sha256 = "01c2a58553a37b3aa5914d9e0bf7bf14507ff4937bc5872a678892ca20fcae1f",
strip_prefix = "aws-c-common-0.4.29",
@ -49,4 +49,3 @@ def repo():
strip_prefix = "aws-checksums-0.1.5",
build_file = "//third_party/aws:aws-checksums.bazel",
)