blob: 71e66ab09efa00a04484aceb66637fda0cf35a6e [file] [log] [blame]
load("@apple_support//xcode:xcode_config.bzl", "xcode_config")
load("@rules_cc//cc:objc_library.bzl", "objc_library")
package(default_visibility = ["//visibility:public"])
# Files which shouldn't be publicly visible and dependencies of all objc_* or ios_* rules shouldn't be in this package.
exports_files(glob(["**"]))
filegroup(
name = "srcs",
srcs = glob(["**"]),
)
filegroup(
name = "gcov",
srcs = [":gcov_stub"],
)
filegroup(
name = "mcov",
srcs = [":mcov_stub"],
)
xcode_config(
name = "host_xcodes",
)
objc_library(
name = "dummy_lib",
srcs = [
"objc_dummy.mm",
],
target_compatible_with = ["@platforms//os:macos"],
alwayslink = False,
)