mirror of
https://github.com/openai/codex.git
synced 2026-09-03 14:59:03 +00:00
## What changed - Move the reusable WebSocket relay, registration, frame capture, and encryption assertion helpers into `codex-exec-server-test-support`. - Re-export the helpers from the existing relay test module so its callers keep the same interface. - Add the Cargo dependencies and Bazel proto compile data required by the shared support module. GitOrigin-RevId: 0383149c79ef86cb5e64a09baec41332f9eec4c6
9 lines
254 B
Python
9 lines
254 B
Python
load("//:defs.bzl", "codex_rust_crate")
|
|
|
|
codex_rust_crate(
|
|
name = "support",
|
|
compile_data = ["//codex-rs/exec-server:src/proto/codex.exec_server.relay.v1.rs"],
|
|
crate_name = "codex_exec_server_test_support",
|
|
crate_srcs = glob(["*.rs"]),
|
|
)
|