blob: 6d6752cbde0c32f54914c3eca20dc5239d4d25bd [file] [log] [blame]
# Copyright 2018 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
import("//build/package/component.gni")
executable("logger_integration_cpp_tests") {
testonly = true
sources = [
"logger_tests.cc",
]
deps = [
"//garnet/public/lib/component/cpp",
"//garnet/public/lib/fxl/test:gtest_main",
"//garnet/public/lib/gtest",
"//garnet/public/lib/syslog/cpp",
"//zircon/public/fidl/fuchsia-logger",
"//zircon/public/lib/syslog",
]
}
fuchsia_test_component("test_component") {
binary = "logger_integration_cpp_tests"
deps = [
":logger_integration_cpp_tests",
]
}