123456789101112131415161718192021222324252627282930313233343536373839 |
- local_repository(
- name = "org_tensorflow",
- path = __workspace_dir__ + "/tensorflow",
- )
- load('//tensorflow/tensorflow:workspace.bzl', 'tf_workspace')
- tf_workspace("tensorflow/", "@org_tensorflow")
- # Specify the minimum required Bazel version.
- load("@org_tensorflow//tensorflow:tensorflow.bzl", "check_version")
- check_version("0.2.0")
- # ===== gRPC dependencies =====
- bind(
- name = "libssl",
- actual = "@ts_boringssl_git//:ssl",
- )
- git_repository(
- name = "ts_boringssl_git",
- commit = "436432d849b83ab90f18773e4ae1c7a8f148f48d",
- init_submodules = True,
- remote = "https://github.com/mdsteele/boringssl-bazel.git",
- )
- bind(
- name = "zlib",
- actual = "@ts_zlib_archive//:zlib",
- )
- new_http_archive(
- name = "ts_zlib_archive",
- build_file = "zlib.BUILD",
- sha256 = "879d73d8cd4d155f31c1f04838ecd567d34bebda780156f0e82a20721b3973d5",
- strip_prefix = "zlib-1.2.8",
- url = "http://zlib.net/zlib128.zip",
- )
|