| load("@bazel_skylib//rules:common_settings.bzl", "bool_flag") |
| |
| exports_files([ |
| "gtest.BUILD", |
| "zlib.BUILD", |
| "twisted.BUILD", |
| "yaml.BUILD", |
| "incremental.BUILD", |
| "zope_interface.BUILD", |
| "constantly.BUILD", |
| "cython.BUILD", |
| "six.BUILD", |
| "typing_extensions.BUILD", |
| "enum34.BUILD", |
| "futures.BUILD", |
| "opencensus-cpp.patch", |
| "protobuf.patch", |
| "protoc-gen-validate.patch", |
| ]) |
| |
| package(default_visibility = ["//:__subpackages__"]) |
| |
| bool_flag( |
| name = "grpc_use_openssl", |
| build_setting_default = False, |
| visibility = ["//visibility:public"], |
| ) |
| |
| config_setting( |
| name = "grpc_use_openssl_setting", |
| flag_values = {":grpc_use_openssl": "true"}, |
| ) |
| |
| alias( |
| name = "libssl", |
| actual = select({ |
| ":grpc_use_openssl_setting": "@openssl//:ssl", |
| "//conditions:default": "@boringssl//:ssl", |
| }), |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "libcrypto", |
| actual = select({ |
| ":grpc_use_openssl_setting": "@openssl//:crypto", |
| "//conditions:default": "@boringssl//:crypto", |
| }), |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "madler_zlib", |
| actual = "@zlib//:zlib", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "protobuf", |
| actual = "@com_google_protobuf//:protobuf", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "protobuf_clib", |
| actual = "@com_google_protobuf//:protoc_lib", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "protobuf_headers", |
| actual = "@com_google_protobuf//:protobuf_headers", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "protocol_compiler", |
| actual = "@com_google_protobuf//:protoc", |
| tags = ["manual"], |
| visibility = ["//visibility:public"], |
| ) |
| |
| alias( |
| name = "cares", |
| actual = "@com_github_cares_cares//:ares", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "gtest", |
| actual = "@com_google_googletest//:gtest", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "gtest_main", |
| actual = "@com_google_googletest//:gtest_main", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "fuzztest", |
| actual = "@com_google_fuzztest//fuzztest", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "fuzztest_main", |
| actual = "@com_google_fuzztest//fuzztest:fuzztest_gtest_main", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "benchmark", |
| actual = "@com_github_google_benchmark//:benchmark", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "re2", |
| actual = "@com_googlesource_code_re2//:re2", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "grpc_cpp_plugin", |
| actual = "@com_github_grpc_grpc//src/compiler:grpc_cpp_plugin", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "grpc++_codegen_proto", |
| actual = "@com_github_grpc_grpc//:grpc++_codegen_proto", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "opencensus-context", |
| actual = "@io_opencensus_cpp//opencensus/context:context", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "opencensus-trace", |
| actual = "@io_opencensus_cpp//opencensus/trace:trace", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "opencensus-trace-context_util", |
| actual = "@io_opencensus_cpp//opencensus/trace:context_util", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "opencensus-trace-propagation", |
| actual = "@io_opencensus_cpp//opencensus/trace:grpc_trace_bin", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "opencensus-trace-span_context", |
| actual = "@io_opencensus_cpp//opencensus/trace:span_context", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "opencensus-stats", |
| actual = "@io_opencensus_cpp//opencensus/stats:stats", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "opencensus-stats-test", |
| actual = "@io_opencensus_cpp//opencensus/stats:test_utils", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "opencensus-with-tag-map", |
| actual = "@io_opencensus_cpp//opencensus/tags:with_tag_map", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "opencensus-tags", |
| actual = "@io_opencensus_cpp//opencensus/tags:tags", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "opencensus-tags-context_util", |
| actual = "@io_opencensus_cpp//opencensus/tags:context_util", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "opencensus-trace-stackdriver_exporter", |
| actual = "@io_opencensus_cpp//opencensus/exporters/trace/stackdriver:stackdriver_exporter", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "opencensus-stats-stackdriver_exporter", |
| actual = "@io_opencensus_cpp//opencensus/exporters/stats/stackdriver:stackdriver_exporter", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "googleapis_trace_grpc_service", |
| actual = "@com_google_googleapis//google/devtools/cloudtrace/v2:cloudtrace_cc_grpc", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "googleapis_monitoring_grpc_service", |
| actual = "@com_google_googleapis//google/monitoring/v3:monitoring_cc_grpc", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "googleapis_logging_grpc_service", |
| actual = "@com_google_googleapis//google/logging/v2:logging_cc_grpc", |
| tags = ["manual"], |
| ) |
| |
| alias( |
| name = "googleapis_logging_cc_proto", |
| actual = "@com_google_googleapis//google/logging/v2:logging_cc_proto", |
| tags = ["manual"], |
| ) |