mirror of
https://github.com/openai/codex.git
synced 2026-05-03 02:46:39 +00:00
Explicitly include first-level response helper modules in the core_test_support Bazel target so realtime_webrtc_server.rs is available to macOS builds and lints. Co-authored-by: Codex <noreply@openai.com>
15 lines
312 B
Python
15 lines
312 B
Python
load("//:defs.bzl", "codex_rust_crate")
|
|
|
|
codex_rust_crate(
|
|
name = "common",
|
|
crate_name = "core_test_support",
|
|
crate_srcs = glob([
|
|
"*.rs",
|
|
"responses/*.rs",
|
|
"responses/**/*.rs",
|
|
]),
|
|
lib_data_extra = [
|
|
"//codex-rs/core:model_availability_nux_fixtures",
|
|
],
|
|
)
|