Skip to content

Commit

Permalink
Partially pick #1232
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 712567713
  • Loading branch information
eustas authored and copybara-github committed Jan 6, 2025
1 parent d019271 commit 81aca5b
Show file tree
Hide file tree
Showing 12 changed files with 1,175 additions and 184 deletions.
20 changes: 20 additions & 0 deletions c/fuzz/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Copyright 2025 The Brotli Authors. All rights reserved.
#
# Distributed under MIT license.
# See file LICENSE for detail or copy at https://opensource.org/licenses/MIT

"""Brotli reference implementation"""

module(
name = "brotli_fuzz",
version = "1.1.0",
repo_name = "org_brotli_fuzz",
)

bazel_dep(name = "rules_fuzzing", version = "0.5.2")

bazel_dep(name = "brotli", version = "1.1.0", repo_name = "org_brotli")
local_path_override(
module_name = "brotli",
path = "../..",
)
323 changes: 323 additions & 0 deletions c/fuzz/MODULE.bazel.lock

Large diffs are not rendered by default.

23 changes: 0 additions & 23 deletions c/fuzz/WORKSPACE.bazel

This file was deleted.

21 changes: 21 additions & 0 deletions go/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Copyright 2025 The Brotli Authors. All rights reserved.
#
# Distributed under MIT license.
# See file LICENSE for detail or copy at https://opensource.org/licenses/MIT

"""Brotli reference implementation"""

module(
name = "brotli_go",
version = "1.1.0",
repo_name = "org_brotli_go",
)

bazel_dep(name = "rules_go", version = "0.51.0", repo_name = "io_bazel_rules_go")
bazel_dep(name = "gazelle", version = "0.40.0")

bazel_dep(name = "brotli", version = "1.1.0", repo_name = "org_brotli")
local_path_override(
module_name = "brotli",
path = "..",
)
258 changes: 258 additions & 0 deletions go/MODULE.bazel.lock

Large diffs are not rendered by default.

36 changes: 0 additions & 36 deletions go/WORKSPACE.bazel

This file was deleted.

34 changes: 34 additions & 0 deletions java/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# Copyright 2025 The Brotli Authors. All rights reserved.
#
# Distributed under MIT license.
# See file LICENSE for detail or copy at https://opensource.org/licenses/MIT

"""Brotli reference implementation"""

module(
name = "brotli_java",
version = "1.1.0",
repo_name = "org_brotli_java",
)

bazel_dep(name = "rules_java", version = "8.6.3")
bazel_dep(name = "rules_jvm_external", version = "6.6")
bazel_dep(name = "rules_kotlin", version = "2.1.0")
bazel_dep(name = "platforms", version = "0.0.10")

bazel_dep(name = "brotli", version = "1.1.0", repo_name = "org_brotli")
local_path_override(
module_name = "brotli",
path = "..",
)

maven = use_extension("@rules_jvm_external//:extensions.bzl", "maven")
maven.install(
name = "brotli_maven",
artifacts = ["junit:junit:4.13.2"],
repositories = [
"https://maven.google.com",
"https://repo1.maven.org/maven2"
],
)
use_repo(maven, "brotli_maven")
261 changes: 261 additions & 0 deletions java/MODULE.bazel.lock

Large diffs are not rendered by default.

93 changes: 0 additions & 93 deletions java/WORKSPACE.bazel

This file was deleted.

18 changes: 18 additions & 0 deletions research/MODULE.bazel
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Copyright 2025 The Brotli Authors. All rights reserved.
#
# Distributed under MIT license.
# See file LICENSE for detail or copy at https://opensource.org/licenses/MIT

"""Brotli reference implementation"""

module(
name = "brotli_research",
version = "1.1.0",
repo_name = "org_brotli_research",
)

bazel_dep(name = "brotli", version = "1.1.0", repo_name = "org_brotli")
local_path_override(
module_name = "brotli",
path = "..",
)
Loading

0 comments on commit 81aca5b

Please sign in to comment.