aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow
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 /tensorflow
parentcb057ea64032e551027c8f9058a9d28a258c9d6b (diff)
Convert TensorFlow's aws dependency to new third party import method.
PiperOrigin-RevId: 216265275
Diffstat (limited to 'tensorflow')
-rwxr-xr-xtensorflow/workspace.bzl14
1 files changed, 3 insertions, 11 deletions
diff --git a/tensorflow/workspace.bzl b/tensorflow/workspace.bzl
index adeac62e43..40c226a861 100755
--- a/tensorflow/workspace.bzl
+++ b/tensorflow/workspace.bzl
@@ -20,12 +20,15 @@ load(
"//tensorflow/tools/def_file_filter:def_file_filter_configure.bzl",
"def_file_filter_configure",
)
+load("//third_party/aws:workspace.bzl", aws = "repo")
load("//third_party/flatbuffers:workspace.bzl", flatbuffers = "repo")
load("//third_party/icu:workspace.bzl", icu = "repo")
load("//third_party/jpeg:workspace.bzl", jpeg = "repo")
load("//third_party/nasm:workspace.bzl", nasm = "repo")
def initialize_third_party():
+ """ Load third party repositories. See above load() statements. """
+ aws()
flatbuffers()
icu()
jpeg()
@@ -585,17 +588,6 @@ def tf_workspace(path_prefix = "", tf_repo_name = ""):
],
)
- tf_http_archive(
- name = "aws",
- build_file = clean_dep("//third_party:aws.BUILD"),
- sha256 = "b888d8ce5fc10254c3dd6c9020c7764dd53cf39cf011249d0b4deda895de1b7c",
- strip_prefix = "aws-sdk-cpp-1.3.15",
- 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",
- ],
- )
-
java_import_external(
name = "junit",
jar_sha256 = "59721f0805e223d84b90677887d9ff567dc534d7c502ca903c0c2b17f05c116a",