aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party
diff options
context:
space:
mode:
authorGravatar A. Unique TensorFlower <gardener@tensorflow.org>2018-10-08 15:55:18 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-10-08 15:59:14 -0700
commit783627bf63cdfa467e7811f2bf8330555d66f313 (patch)
tree2698bcb7476716dcdbe8c908bbafaea3976e5104 /third_party
parentcb057ea64032e551027c8f9058a9d28a258c9d6b (diff)
Convert TensorFlow's aws dependency to new third party import method.
PiperOrigin-RevId: 216265275
Diffstat (limited to 'third_party')
-rw-r--r--third_party/aws/BUILD1
-rw-r--r--third_party/aws/BUILD.bazel (renamed from third_party/aws.BUILD)0
-rw-r--r--third_party/aws/workspace.bzl15
3 files changed, 16 insertions, 0 deletions
diff --git a/third_party/aws/BUILD b/third_party/aws/BUILD
new file mode 100644
index 0000000000..2f5d02becb
--- /dev/null
+++ b/third_party/aws/BUILD
@@ -0,0 +1 @@
+# Dummy BUILD file to make this directory a package.
diff --git a/third_party/aws.BUILD b/third_party/aws/BUILD.bazel
index 5426f79e46..5426f79e46 100644
--- a/third_party/aws.BUILD
+++ b/third_party/aws/BUILD.bazel
diff --git a/third_party/aws/workspace.bzl b/third_party/aws/workspace.bzl
new file mode 100644
index 0000000000..c216638154
--- /dev/null
+++ b/third_party/aws/workspace.bzl
@@ -0,0 +1,15 @@
+"""loads the aws library, used by TF."""
+
+load("//third_party:repo.bzl", "third_party_http_archive")
+
+def repo():
+ third_party_http_archive(
+ name = "aws",
+ urls = [
+ "https://mirror.bazel.build/github.com/aws/aws-sdk-cpp/archive/1.3.15.tar.gz",
+ "https://github.com/aws/aws-sdk-cpp/archive/1.3.15.tar.gz",
+ ],
+ sha256 = "b888d8ce5fc10254c3dd6c9020c7764dd53cf39cf011249d0b4deda895de1b7c",
+ strip_prefix = "aws-sdk-cpp-1.3.15",
+ build_file = "//third_party/aws:BUILD.bazel",
+ )