Skip to content

Commit 77f0338

Browse files
alexeaglefhanau
authored andcommitted
refactor(bazel): move a dep to bzlmod
This one is needed before moving v8 and perfetto, which depend on it
1 parent c732fdb commit 77f0338

File tree

4 files changed

+7
-30
lines changed

4 files changed

+7
-30
lines changed

build/deps/deps.MODULE.bazel

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,3 +125,10 @@ http_archive(
125125
strip_prefix = "dragonbox-6c7c925b571d54486b9ffae8d9d18a822801cbda",
126126
url = "https://github.com/jk-jeon/dragonbox/archive/6c7c925b571d54486b9ffae8d9d18a822801cbda.tar.gz",
127127
)
128+
129+
http_archive(
130+
name = "simdutf",
131+
url = "https://github.com/simdutf/simdutf/releases/download/v7.4.0/singleheader.zip",
132+
sha256 = "b92e186ff44840edd1350f57e6c75144d912407045a3057450014cf9b2014a83",
133+
build_file = "//:build/BUILD.simdutf",
134+
)

build/deps/deps.jsonc

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,6 @@
1818
"strip_prefix": "",
1919
"build_file": "//:build/BUILD.ada-url"
2020
},
21-
{
22-
"name": "simdutf",
23-
"type": "github_release",
24-
"owner": "simdutf",
25-
"repo": "simdutf",
26-
"file_regex": "singleheader.zip",
27-
"strip_prefix": "",
28-
"build_file": "//:build/BUILD.simdutf"
29-
},
3021
{
3122
"type": "github_release",
3223
"name": "brotli",

build/deps/gen/dep_simdutf.bzl

Lines changed: 0 additions & 19 deletions
This file was deleted.

build/deps/gen/deps.bzl

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,8 @@
33
load("@//build/deps:gen/dep_ada_url.bzl", "dep_ada_url")
44
load("@//build/deps:gen/dep_brotli.bzl", "dep_brotli")
55
load("@//build/deps:gen/dep_capnp_cpp.bzl", "dep_capnp_cpp")
6-
load("@//build/deps:gen/dep_simdutf.bzl", "dep_simdutf")
76

87
def deps_gen():
98
dep_capnp_cpp()
109
dep_ada_url()
11-
dep_simdutf()
1210
dep_brotli()

0 commit comments

Comments
 (0)