aboutsummaryrefslogtreecommitdiff
path: root/research/WORKSPACE
blob: 343c3bb260bce643eea9baaa110161fefc035ad7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
workspace(name = "org_brotli_research")

load("@bazel_tools//tools/build_defs/repo:git.bzl", "new_git_repository")

local_repository(
    name = "org_brotli",
    path = "..",
)

new_git_repository(
    name = "divsufsort",
    build_file = "@//:BUILD.libdivsufsort",
    commit = "5f60d6f026c30fb4ac296f696b3c8b0eb71bd428",
    remote = "https://github.com/y-256/libdivsufsort",
    shallow_since = "1445958113 +0900",
)

new_git_repository(
    name = "esaxx",
    build_file_content = """
package(default_visibility = ["//visibility:public"])
cc_library(
    name = "sais",
    hdrs = ["sais.hxx"],
    includes = ["."],
    include_prefix = "third_party/esaxx",
)
""",
    commit = "ca7cb332011ec37a8436487f210f396b84bd8273",
    remote = "https://github.com/hillbig/esaxx",
    shallow_since = "1391400691 +0900",
)