blob: 12d9480ed8c3eb8411905d1cb36687581f6403a3 [file] [log] [blame]
# Copyright 2017 The Fuchsia 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.
# Defines the output of the command that runs protoc on the .proto files located
# in the report_master directory.
protobuf_generate_cpp(PROTO_SRCS PROTO_HDRS analyzer.proto)
# generate the gRPC service. CMake doesn't support it by default.
set(PROTO_GRPC "${CMAKE_CURRENT_BINARY_DIR}/analyzer.grpc.pb.cc")
add_custom_command(OUTPUT ${PROTO_GRPC}
COMMAND protoc ${CMAKE_CURRENT_SOURCE_DIR}/analyzer.proto
-I ${CMAKE_SOURCE_DIR}
--grpc_out=${CMAKE_BINARY_DIR}
--plugin=protoc-gen-grpc=`which grpc_cpp_plugin`
DEPENDS analyzer.proto
)
add_custom_target(build_analyzer_protos
DEPENDS ${PROTO_SRCS}
DEPENDS ${PROTO_GRPC})
# Generate the Go bindings for Analyzer service.
set(ANALYZER_PB_GO "${GO_PROTO_GEN_SRC_DIR}/analyzer/analyzer_service/analyzer.pb.go")
# This allows us to indicate below that analyzer.pb.go depends on observation.pb.go
set_source_files_properties(${OBSERVATION_PB_GO} PROPERTIES GENERATED TRUE)
add_custom_command(OUTPUT "${ANALYZER_PB_GO}"
COMMAND ${GO_PROTOC}
${CMAKE_CURRENT_SOURCE_DIR}/analyzer.proto
-I ${CMAKE_SOURCE_DIR}
--go_out=plugins=grpc,Mobservation.proto=cobalt,Mencrypted_message.proto=cobalt:${GO_PROTO_GEN_SRC_DIR}
DEPENDS ${CMAKE_CURRENT_SOURCE_DIR}/analyzer.proto
DEPENDS ${OBSERVATION_PB_GO}
)
add_custom_target(build_analyzer_pb_go
DEPENDS ${ANALYZER_PB_GO})
# end: Generate the Go bindings for the Analyzer service.
set_source_files_properties(${COBALT_PROTO_SRCS} PROPERTIES GENERATED TRUE)
set_source_files_properties(${CONFIG_PROTO_SRCS} PROPERTIES GENERATED TRUE)
add_library(analyzer_grpc_client
${PROTO_GRPC} ${PROTO_SRCS})
# Build the analyzer-service library
add_library(analyzer_service_lib
analyzer_service.cc
${COBALT_PROTO_SRCS} ${CONFIG_PROTO_SRCS} ${PROTO_SRCS})
target_link_libraries(analyzer_service_lib
analyzer_grpc_client
analyzer_store
encrypted_message_util
pem_util
glog
${PROTOBUF_LIBRARY})
# Build the analyzer_service executable
add_executable(analyzer_service main.cc)
target_link_libraries(analyzer_service analyzer_service_lib)
# Build the tests
add_executable(analyzer_service_tests
${CMAKE_SOURCE_DIR}/analyzer/store/memory_store.cc
analyzer_service_test.cc)
target_link_libraries(analyzer_service_tests
analyzer_service_lib
gtest gtest_main)
set_target_properties(analyzer_service_tests PROPERTIES
RUNTIME_OUTPUT_DIRECTORY ${DIR_GTESTS})