fix(build): include vendored bubblewrap in bazel build script data

This commit is contained in:
viyatb-oai
2026-02-11 15:16:39 -08:00
parent 8e6faca287
commit 3c71a8a6b7
2 changed files with 10 additions and 0 deletions

View File

@@ -1,3 +1,10 @@
exports_files([
"node-version.txt",
])
filegroup(
name = "vendor_bubblewrap_sources",
srcs = glob([
"vendor/bubblewrap/**",
]),
)

View File

@@ -3,4 +3,7 @@ load("//:defs.bzl", "codex_rust_crate")
codex_rust_crate(
name = "linux-sandbox",
crate_name = "codex_linux_sandbox",
build_script_data = [
"//codex-rs:vendor_bubblewrap_sources",
],
)