aboutsummaryrefslogtreecommitdiff
path: root/research/WORKSPACE.bazel
diff options
context:
space:
mode:
authorEvgenii Kliuchnikov <eustas@google.com>2023-07-06 11:56:38 +0000
committerEvgenii Kliuchnikov <eustas.ru@gmail.com>2023-07-10 11:43:27 +0000
commit70e7b1ae4a3f3cd0009cbcc81e66330780c16653 (patch)
tree267840d2d2224747bd84bbf8a7d7a7b75f84ff09 /research/WORKSPACE.bazel
parent413b098564a90a2e6cae192d30642d33a9197a39 (diff)
downloadbrotli-70e7b1ae4a3f3cd0009cbcc81e66330780c16653.zip
brotli-70e7b1ae4a3f3cd0009cbcc81e66330780c16653.tar.gz
brotli-70e7b1ae4a3f3cd0009cbcc81e66330780c16653.tar.bz2
simplify building of fuzzer
PiperOrigin-RevId: 545950923
Diffstat (limited to 'research/WORKSPACE.bazel')
-rw-r--r--research/WORKSPACE.bazel32
1 files changed, 32 insertions, 0 deletions
diff --git a/research/WORKSPACE.bazel b/research/WORKSPACE.bazel
new file mode 100644
index 0000000..343c3bb
--- /dev/null
+++ b/research/WORKSPACE.bazel
@@ -0,0 +1,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",
+)