Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 0 additions & 15 deletions build/deps/deps.jsonc
Original file line number Diff line number Diff line change
@@ -1,10 +1,6 @@
{
"$schema": "deps.schema.json",
"repositories": [
{
"name": "ada-url",
"type": "bazel_dep"
},
// BoringSSL is more likely to break than other dependencies, because our downstream build uses
// a custom-built version of BoringSSL in FIPS mode.
{
Expand Down Expand Up @@ -110,17 +106,6 @@
"build_file": "//:build/BUILD.simdutf",
"file_regex": "singleheader.zip"
},
// TODO: wpt was temporarily removed from shared_deps.jsonc because it would require
// workerd to be fully converted to bzlmod before the internal repo can load it.
{
"name": "wpt",
"type": "github_release",
"owner": "cloudflare",
"repo": "workerd-tools",
"file_regex": "wpt-.*.tar.gz",
"build_file": "@workerd//:build/BUILD.wpt",
"freeze_version": "wpt-11b9300f1"
},
// This should match the version specified in V8 DEPS, but in practice it is generally acceptable
// for it to be behind – zlib is very stable and its API has not changed in a long time, most
// changes to the Chromium fork affect ancillary tools and not the zlib library itself.
Expand Down
14 changes: 0 additions & 14 deletions build/deps/gen/deps.MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ http = use_extension("@//:build/exts/http.bzl", "http")

git_repository = use_repo_rule("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")

# ada-url
bazel_dep(name = "ada-url", version = "3.4.1")

# boringssl
bazel_dep(name = "boringssl", repo_name = "ssl")
archive_override(
Expand Down Expand Up @@ -133,17 +130,6 @@ use_repo(http, "simdutf")
# tcmalloc
bazel_dep(name = "tcmalloc", version = "0.0.0-20250927-12f2552")

# wpt
http.archive(
name = "wpt",
build_file = "@workerd//:build/BUILD.wpt",
sha256 = "12e70405452dd56cbd92d4986d4e002fa91db2db1c3f1725d303692b6699974b",
strip_prefix = "wpt-11b9300f1",
type = "tgz",
url = "https://github.com/cloudflare/workerd-tools/releases/download/wpt-11b9300f1/wpt-11b9300f1.tar.gz",
)
use_repo(http, "wpt")

# zlib
bazel_dep(name = "zlib")
git_override(
Expand Down
14 changes: 14 additions & 0 deletions build/deps/gen/shared_deps.MODULE.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@ http = use_extension("@//:build/exts/http.bzl", "http")

git_repository = use_repo_rule("@bazel_tools//tools/build_defs/repo:git.bzl", "git_repository")

# ada-url
bazel_dep(name = "ada-url", version = "3.4.2")

# buildifier-darwin-amd64
http.file(
name = "buildifier-darwin-amd64",
Expand Down Expand Up @@ -108,3 +111,14 @@ http.archive(
url = "https://github.com/astral-sh/ruff/releases/download/0.12.1/ruff-aarch64-unknown-linux-gnu.tar.gz",
)
use_repo(http, "ruff-linux-arm64")

# wpt
http.archive(
name = "wpt",
build_file = "@workerd//:build/BUILD.wpt",
sha256 = "12e70405452dd56cbd92d4986d4e002fa91db2db1c3f1725d303692b6699974b",
strip_prefix = "wpt-11b9300f1",
type = "tgz",
url = "https://github.com/cloudflare/workerd-tools/releases/download/wpt-11b9300f1/wpt-11b9300f1.tar.gz",
)
use_repo(http, "wpt")
13 changes: 13 additions & 0 deletions build/deps/shared_deps.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"$schema": "deps.schema.json",
"repositories": [
{
"name": "ada-url",
"type": "bazel_dep"
},
//buildifier
// Version is frozen to avoid to keep formatting consistent.
{
Expand Down Expand Up @@ -106,6 +110,15 @@
"file_regex": "llvm-.*-darwin-arm64-clang-format",
"file_type": "executable",
"freeze_version": "llvm-18.1.8"
},
{
"name": "wpt",
"type": "github_release",
"owner": "cloudflare",
"repo": "workerd-tools",
"file_regex": "wpt-.*.tar.gz",
"build_file": "@workerd//:build/BUILD.wpt",
"freeze_version": "wpt-11b9300f1"
}
]
}
Loading