|
|
|
@ -44,6 +44,36 @@ config_setting( |
|
|
|
|
values = {"cpu": "ios_arm64"}, |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
config_setting( |
|
|
|
|
name = "tvos_x86_64", |
|
|
|
|
values = {"cpu": "tvos_x86_64"}, |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
config_setting( |
|
|
|
|
name = "tvos_arm64", |
|
|
|
|
values = {"cpu": "tvos_arm64"} |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
config_setting( |
|
|
|
|
name = "watchos_i386", |
|
|
|
|
values = {"cpu": "watchos_i386"}, |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
config_setting( |
|
|
|
|
name = "watchos_x86_64", |
|
|
|
|
values = {"cpu": "watchos_x86_64"} |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
config_setting( |
|
|
|
|
name = "watchos_armv7k", |
|
|
|
|
values = {"cpu": "watchos_armv7k"}, |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
config_setting( |
|
|
|
|
name = "watchos_arm64_32", |
|
|
|
|
values = {"cpu": "watchos_arm64_32"} |
|
|
|
|
) |
|
|
|
|
|
|
|
|
|
genrule( |
|
|
|
|
name = "ares_build_h", |
|
|
|
|
srcs = ["@com_github_grpc_grpc//third_party/cares:ares_build.h"], |
|
|
|
@ -58,6 +88,12 @@ genrule( |
|
|
|
|
":ios_armv7": ["@com_github_grpc_grpc//third_party/cares:config_darwin/ares_config.h"], |
|
|
|
|
":ios_armv7s": ["@com_github_grpc_grpc//third_party/cares:config_darwin/ares_config.h"], |
|
|
|
|
":ios_arm64": ["@com_github_grpc_grpc//third_party/cares:config_darwin/ares_config.h"], |
|
|
|
|
":tvos_x86_64": ["@com_github_grpc_grpc//third_party/cares:config_darwin/ares_config.h"], |
|
|
|
|
":tvos_arm64": ["@com_github_grpc_grpc//third_party/cares:config_darwin/ares_config.h"], |
|
|
|
|
":watchos_i386": ["@com_github_grpc_grpc//third_party/cares:config_darwin/ares_config.h"], |
|
|
|
|
":watchos_x86_64": ["@com_github_grpc_grpc//third_party/cares:config_darwin/ares_config.h"], |
|
|
|
|
":watchos_armv7k": ["@com_github_grpc_grpc//third_party/cares:config_darwin/ares_config.h"], |
|
|
|
|
":watchos_arm64_32": ["@com_github_grpc_grpc//third_party/cares:config_darwin/ares_config.h"], |
|
|
|
|
":darwin": ["@com_github_grpc_grpc//third_party/cares:config_darwin/ares_config.h"], |
|
|
|
|
":darwin_x86_64": ["@com_github_grpc_grpc//third_party/cares:config_darwin/ares_config.h"], |
|
|
|
|
":windows": ["@com_github_grpc_grpc//third_party/cares:config_windows/ares_config.h"], |
|
|
|
|