Files
apache--brpc/bazel/config/BUILD.bazel
T
2026-07-13 13:29:29 +08:00

152 lines
3.9 KiB
Python

# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
load("@bazel_skylib//lib:selects.bzl", "selects")
licenses(["notice"]) # Apache v2
selects.config_setting_group(
name = "brpc_with_glog",
match_any = [
":brpc_with_glog_deprecated_flag",
":brpc_with_glog_new_flag",
],
visibility = ["//visibility:public"],
)
config_setting(
name = "brpc_with_glog_deprecated_flag",
define_values = {"with_glog": "true"},
)
config_setting(
name = "brpc_with_glog_new_flag",
define_values = {"BRPC_WITH_GLOG": "true"},
)
selects.config_setting_group(
name = "brpc_with_mesalink",
match_any = [
":brpc_with_mesalink_deprecated_flag",
":brpc_with_mesalink_new_flag",
],
visibility = ["//visibility:public"],
)
config_setting(
name = "brpc_with_mesalink_deprecated_flag",
define_values = {"with_mesalink": "true"},
)
config_setting(
name = "brpc_with_mesalink_new_flag",
define_values = {"BRPC_WITH_MESALINK": "true"},
)
selects.config_setting_group(
name = "brpc_with_thrift",
match_any = [
":brpc_with_thrift_deprecated_flag",
":brpc_with_thrift_new_flag",
],
visibility = ["//visibility:public"],
)
config_setting(
name = "brpc_with_thrift_legacy_version",
define_values = {"BRPC_WITH_THRIFT_LEGACY_VERSION": "true"},
visibility = ["//visibility:public"],
)
config_setting(
name = "brpc_with_thrift_deprecated_flag",
define_values = {"with_thrift": "true"},
)
config_setting(
name = "brpc_with_thrift_new_flag",
define_values = {"BRPC_WITH_THRIFT": "true"},
)
config_setting(
name = "brpc_build_for_unittest",
define_values = {"BRPC_BUILD_FOR_UNITTEST": "true"},
visibility = ["//visibility:public"],
)
config_setting(
name = "brpc_with_sse42",
define_values = {"BRPC_WITH_SSE42": "true"},
visibility = ["//visibility:public"],
)
config_setting(
name = "darwin",
values = {"cpu": "darwin"},
visibility = ["//:__subpkgs__"],
)
config_setting(
name = "brpc_with_rdma",
define_values = {"BRPC_WITH_RDMA": "true"},
visibility = ["//visibility:public"],
)
config_setting(
name = "brpc_with_boringssl",
define_values = {"BRPC_WITH_BORINGSSL": "true"},
visibility = ["//visibility:public"],
)
config_setting(
name = "brpc_with_debug_bthread_sche_safety",
define_values = {"with_debug_bthread_sche_safety": "true"},
visibility = ["//visibility:public"],
)
config_setting(
name = "brpc_with_debug_lock",
define_values = {"with_debug_lock": "true"},
visibility = ["//visibility:public"],
)
config_setting(
name = "brpc_with_asan",
define_values = {"with_asan": "true"},
visibility = ["//visibility:public"],
)
config_setting(
name = "brpc_with_bthread_tracer",
constraint_values = [
"@platforms//cpu:x86_64",
],
define_values = {
"with_bthread_tracer": "true",
},
visibility = ["//visibility:public"],
)
config_setting(
name = "brpc_with_no_pthread_mutex_hook",
define_values = {"BRPC_WITH_NO_PTHREAD_MUTEX_HOOK": "true"},
visibility = ["//visibility:public"],
)
config_setting(
name = "with_babylon_counter",
define_values = {"with_babylon_counter": "true"},
visibility = ["//visibility:public"],
)