summaryrefslogtreecommitdiff
path: root/crosstool/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'crosstool/BUILD')
-rw-r--r--crosstool/BUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/crosstool/BUILD b/crosstool/BUILD
new file mode 100644
index 0000000..41b6e00
--- /dev/null
+++ b/crosstool/BUILD
@@ -0,0 +1,23 @@
+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(
+ ["**"],
+))
+
+cc_binary(
+ name = "wrapped_clang",
+ testonly = True,
+ srcs = [
+ "wrapped_clang.cc",
+ ],
+ copts = ["-std=c++17"],
+)
+
+# Consumed by bazel tests.
+filegroup(
+ name = "for_bazel_tests",
+ testonly = True,
+ srcs = glob(["**"]),
+ visibility = ["//:__pkg__"],
+)