mirror of
https://github.com/openai/codex.git
synced 2026-04-26 15:45:02 +00:00
## Summary - move macOS permission merging/intersection logic and tests from `codex-core` into `codex-sandboxing` - move seatbelt policy builders, permissions logic, SBPL assets, and their tests into `codex-sandboxing` - keep `codex-core` owning only the seatbelt spawn wrapper and switch call sites to import the moved APIs directly ## Notes - no re-exports added - moved the seatbelt tests with the implementation so internal helpers could stay private - local verification is still finishing while this PR is open
12 lines
295 B
Python
12 lines
295 B
Python
load("//:defs.bzl", "codex_rust_crate")
|
|
|
|
codex_rust_crate(
|
|
name = "sandboxing",
|
|
crate_name = "codex_sandboxing",
|
|
compile_data = [
|
|
"src/restricted_read_only_platform_defaults.sbpl",
|
|
"src/seatbelt_base_policy.sbpl",
|
|
"src/seatbelt_network_policy.sbpl",
|
|
],
|
|
)
|