load("@rules_shell//shell:sh_test.bzl", "sh_test") exports_files([".env"]) filegroup( name = "env_file", srcs = [".env"], visibility = ["//visibility:public"], ) filegroup( name = "first_party_c_sources", srcs = glob( [ "**/*.c", "**/*.h", ], exclude = ["third_party/**"], ), ) sh_test( name = "arena_policy_test", srcs = ["tools/arena_policy_test.sh"], data = [":first_party_c_sources"], )