blob: 1e8efe9bb2f86015a3d8ea8a7cf4ccc7a3e6dd9c [file] [log] [blame]
#
# 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("@rules_cc//cc:defs.bzl", "cc_library", "cc_binary")
cc_library(
name = "admin_server_library",
hdrs = [
"include/AdminServiceImpl.h",
"include/AdminServerImpl.h",
"include/ServerCall.h",
],
srcs = [
"AdminFacade.cpp",
"AdminServerImpl.cpp",
"AdminServiceImpl.cpp",
],
strip_include_prefix = "//src/main/cpp/admin/include",
deps = [
"//api:rocketmq_interface",
"//proto:rocketmq_grpc_library",
"@com_github_gabime_spdlog//:spdlog",
],
visibility = ["//visibility:public"],
)
cc_library(
name = "admin_client_interface",
hdrs = [
"include/AdminClient.h",
],
strip_include_prefix = "//src/main/cpp/admin/include",
deps = [
"//api:rocketmq_interface",
],
)
cc_binary(
name = "admin_client",
srcs = [
"AdminClient.cpp",
],
deps = [
":admin_client_interface",
"//proto:rocketmq_grpc_library",
],
)