-
Notifications
You must be signed in to change notification settings - Fork 38
/
BUILD
42 lines (38 loc) · 1.21 KB
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
load("@bazel_skylib//:bzl_library.bzl", "bzl_library")
licenses(["notice"])
exports_files(["LICENSE"])
# An umbrella bzl_library for anything that needs it (like to then use stardoc),
# but odds are using the specific sub bzl_library to with the public bzl files
# are a better choice to get the proper subset of dependencies.
bzl_library(
name = "apple_support",
visibility = ["//visibility:public"],
deps = [
"//lib:apple_support",
"//lib:lipo",
"//lib:xcode_support",
"//rules:apple_genrule",
],
)
# Consumed by bazel tests.
filegroup(
name = "for_bazel_tests",
testonly = 1,
srcs = [
"BUILD",
"LICENSE",
"WORKSPACE",
"//configs:for_bazel_tests",
"//constraints:for_bazel_tests",
"//crosstool:for_bazel_tests",
"//lib:for_bazel_tests",
"//platforms:for_bazel_tests",
"//rules:for_bazel_tests",
"//tools:for_bazel_tests",
"//xcode:for_bazel_tests",
],
# Exposed publicly just so other rules can use this if they set up
# integration tests that need to copy all the support files into
# a temporary workspace for the tests.
visibility = ["//visibility:public"],
)