WORKSPACE 946 Bytes
Newer Older
1
local_repository(
2
  name = "org_tensorflow",
3
4
5
6
  path = __workspace_dir__ + "/tensorflow",
)

load('//tensorflow/tensorflow:workspace.bzl', 'tf_workspace')
7
tf_workspace("tensorflow/", "@org_tensorflow")
8
9

# Specify the minimum required Bazel version.
10
load("@org_tensorflow//tensorflow:tensorflow.bzl", "check_version")
11
12
13
14
15
16
check_version("0.2.0")

# ===== gRPC dependencies =====

bind(
    name = "libssl",
17
    actual = "@ts_boringssl_git//:ssl",
18
19
20
)

git_repository(
21
    name = "ts_boringssl_git",
22
23
24
25
26
27
28
    commit = "436432d849b83ab90f18773e4ae1c7a8f148f48d",
    init_submodules = True,
    remote = "https://github.com/mdsteele/boringssl-bazel.git",
)

bind(
    name = "zlib",
29
    actual = "@ts_zlib_archive//:zlib",
30
31
32
)

new_http_archive(
33
    name = "ts_zlib_archive",
34
35
36
37
38
    build_file = "zlib.BUILD",
    sha256 = "879d73d8cd4d155f31c1f04838ecd567d34bebda780156f0e82a20721b3973d5",
    strip_prefix = "zlib-1.2.8",
    url = "http://zlib.net/zlib128.zip",
)