2018-01-24 04:29:41 +08:00
|
|
|
# Copyright 2018 The Cartographer Authors
|
|
|
|
#
|
|
|
|
# Licensed 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.
|
|
|
|
|
|
|
|
# Top-level proto and C++ targets for Cartographer's gRPC server.
|
|
|
|
|
|
|
|
load("@com_github_grpc_grpc//bazel:cc_grpc_library.bzl", "cc_grpc_library")
|
|
|
|
|
2018-01-24 20:16:25 +08:00
|
|
|
licenses(["notice"]) # Apache 2.0
|
|
|
|
|
2018-01-24 04:29:41 +08:00
|
|
|
package(default_visibility = ["//visibility:public"])
|
|
|
|
|
|
|
|
proto_library(
|
|
|
|
name = "protos",
|
|
|
|
srcs = glob(
|
|
|
|
[
|
|
|
|
"**/*.proto",
|
|
|
|
],
|
|
|
|
exclude = [
|
|
|
|
"**/*_service.proto",
|
|
|
|
],
|
|
|
|
),
|
|
|
|
deps = [
|
|
|
|
"//cartographer:protos",
|
|
|
|
"@com_google_protobuf//:empty_proto",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_proto_library(
|
|
|
|
name = "cc_protos",
|
|
|
|
deps = [":protos"],
|
|
|
|
)
|
|
|
|
|
|
|
|
# TODO(rodrigoq): This special rule name is required by cc_grpc_library. This
|
|
|
|
# makes :protos look like it was created by
|
|
|
|
# cc_grpc_library(proto_only=True, ...)
|
|
|
|
proto_library(
|
|
|
|
name = "_cc_protos_only",
|
|
|
|
deps = [
|
|
|
|
":protos",
|
|
|
|
"//cartographer:protos",
|
|
|
|
"@com_google_protobuf//:empty_proto",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
# TODO(rodrigoq): this doesn't work when it is in an external repository. If
|
|
|
|
# you want to use it, you can vendor cartographer in your main workspace.
|
|
|
|
cc_grpc_library(
|
|
|
|
name = "proto_map_builder_service_grpc_cc",
|
|
|
|
srcs = ["proto/map_builder_service.proto"],
|
|
|
|
generate_mock = False,
|
|
|
|
proto_only = False,
|
|
|
|
use_external = True,
|
|
|
|
well_known_protos = True,
|
|
|
|
deps = [
|
|
|
|
":cc_protos",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_library(
|
|
|
|
name = "cartographer_grpc",
|
|
|
|
srcs = glob(
|
|
|
|
[
|
|
|
|
"**/*.cc",
|
|
|
|
],
|
|
|
|
exclude = [
|
|
|
|
"**/*_main.cc",
|
|
|
|
"**/*_test.cc",
|
|
|
|
],
|
|
|
|
),
|
|
|
|
hdrs = glob([
|
|
|
|
"**/*.h",
|
|
|
|
]),
|
2018-01-31 22:19:36 +08:00
|
|
|
copts = ["-Wno-sign-compare"],
|
2018-01-24 04:29:41 +08:00
|
|
|
includes = ["."],
|
|
|
|
deps = [
|
|
|
|
":cc_protos",
|
|
|
|
":proto_map_builder_service_grpc_cc",
|
|
|
|
"//cartographer",
|
|
|
|
"@com_github_grpc_grpc//:grpc++",
|
|
|
|
"@com_google_glog//:glog",
|
|
|
|
"@com_google_protobuf//:cc_wkt_protos",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
cc_binary(
|
2018-01-25 20:28:31 +08:00
|
|
|
name = "cartographer_grpc_server",
|
2018-01-24 04:29:41 +08:00
|
|
|
srcs = ["map_builder_server_main.cc"],
|
|
|
|
deps = [
|
|
|
|
":cartographer_grpc",
|
|
|
|
"@com_github_gflags_gflags//:gflags",
|
|
|
|
"@com_google_glog//:glog",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
# This service is only used by the tests.
|
|
|
|
cc_grpc_library(
|
|
|
|
name = "framework_proto_math_service_grpc_cc",
|
|
|
|
srcs = ["framework/proto/math_service.proto"],
|
|
|
|
generate_mock = False,
|
|
|
|
proto_only = False,
|
|
|
|
use_external = True,
|
|
|
|
well_known_protos = True,
|
|
|
|
deps = [
|
|
|
|
":cc_protos",
|
|
|
|
],
|
|
|
|
)
|
|
|
|
|
|
|
|
[cc_test(
|
|
|
|
name = src.replace("/", "_").replace(".cc", ""),
|
|
|
|
srcs = [src],
|
2018-02-02 04:58:59 +08:00
|
|
|
data = ["//:configuration_files"],
|
2018-01-24 04:29:41 +08:00
|
|
|
deps = [
|
|
|
|
":cartographer_grpc",
|
|
|
|
":framework_proto_math_service_grpc_cc",
|
|
|
|
"@com_google_googletest//:gtest_main",
|
|
|
|
],
|
|
|
|
) for src in glob(
|
|
|
|
["**/*_test.cc"],
|
|
|
|
)]
|