mirror of
https://github.com/openai/codex.git
synced 2026-09-08 15:50:34 +00:00
16 lines
560 B
Python
16 lines
560 B
Python
load("//:defs.bzl", "codex_rust_crate")
|
|
|
|
codex_rust_crate(
|
|
name = "code-mode-runtime",
|
|
crate_name = "codex_code_mode_runtime",
|
|
crate_features = select({
|
|
"@rules_rs//rs/experimental/platforms/constraints:windows_msvc": [],
|
|
"//conditions:default": ["sandbox"],
|
|
}),
|
|
deps_extra = ["@crates//:v8"],
|
|
# Ordinary Bazel CI excludes the old V8-backed code-mode unit tests. Keep
|
|
# the moved runtime tests explicit so wildcard test queries do not pull V8
|
|
# back into the ordinary Bazel matrix.
|
|
test_tags = ["manual"],
|
|
)
|