blob: 1695e6d28c9b812789237f19f6206cae8f661d4d [file] [log] [blame]
package(default_visibility = ["//visibility:public"])
# Files which shouldn't be publicly visible and dependencies of all objc_* or ios_* rules should be excluded.
exports_files(glob(
["**"],
exclude = ["wrapped_clang_test.sh"],
))
filegroup(
name = "srcs",
srcs = glob(["**"]),
)
cc_binary(
name = "wrapped_clang",
testonly = True,
srcs = [
"wrapped_clang.cc",
],
)
sh_test(
name = "wrapped_clang_test",
size = "small",
srcs = [
"wrapped_clang_test.sh",
],
data = [
":wrapped_clang",
"//src/test/shell:bashunit",
"@bazel_tools//tools/bash/runfiles",
],
)