blob: 24d5e1f67f992942be79394281fe1fd78b55621d [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.
# Build the test_app library.
add_library(test_app test_app.cc)
target_link_libraries(test_app
analyzer_grpc_client
encoder
pem_util)
add_cobalt_dependencies(test_app)
# Build the cobalt_test_app executable.
add_executable(cobalt_test_app
test_app_main.cc)
target_link_libraries(cobalt_test_app
test_app)
add_cobalt_dependencies(cobalt_test_app)
# Build the tests
add_executable(test_app_tests
test_app_test.cc)
target_link_libraries(test_app_tests
test_app)
add_cobalt_test_dependencies(test_app_tests ${DIR_GTESTS})