mirror of
https://github.com/google/brotli.git
synced 2024-11-12 15:10:15 +00:00
a657d9969d
* add (c)brotli golang wrapper * remove (language-specific) enums in java decoder
19 lines
365 B
Python
19 lines
365 B
Python
# Description:
|
|
# Bazel workspace file for Brotli.
|
|
|
|
workspace(name = "org_brotli")
|
|
|
|
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()
|