aboutsummaryrefslogtreecommitdiff
path: root/WORKSPACE
diff options
context:
space:
mode:
authorEugene Kliuchnikov <eustas@google.com>2017-03-22 12:41:19 +0100
committerGitHub <noreply@github.com>2017-03-22 12:41:19 +0100
commita657d9969dfb9655f4b483a658ad5da9dda3e52e (patch)
tree4c422b8d194ab563edf0c50dfc2045b7487dc91a /WORKSPACE
parent8a06e02935abadcfff46099c43c879a677d56280 (diff)
downloadbrotli-a657d9969dfb9655f4b483a658ad5da9dda3e52e.zip
brotli-a657d9969dfb9655f4b483a658ad5da9dda3e52e.tar.gz
brotli-a657d9969dfb9655f4b483a658ad5da9dda3e52e.tar.bz2
Add go wrapper, streamline java decoder: (#524)
* add (c)brotli golang wrapper * remove (language-specific) enums in java decoder
Diffstat (limited to 'WORKSPACE')
-rw-r--r--WORKSPACE9
1 files changed, 9 insertions, 0 deletions
diff --git a/WORKSPACE b/WORKSPACE
index 9771d45..4c3c9b7 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -7,3 +7,12 @@ maven_jar(
name = "junit_junit",
artifact = "junit:junit:4.12",
)
+
+git_repository(
+ name = "io_bazel_rules_go",
+ remote = "https://github.com/bazelbuild/rules_go.git",
+ tag = "0.4.1",
+)
+load("@io_bazel_rules_go//go:def.bzl", "go_repositories")
+
+go_repositories()