blob: 1c3c825c7426efa62d2606cdc03d73d624531b98 [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")
group("cpp") {
testonly = true
deps = [
":logger_integration_cpp_tests",
]
}
executable("logger_integration_cpp_tests") {
testonly = true
sources = [
"logger_tests.cc",
]
deps = [
"//garnet/public/lib/gtest",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/cpp/testing:integration",
"//src/lib/fsl",
"//src/lib/fxl/test:gtest_main",
"//src/lib/syslog/cpp",
"//third_party/googletest:gmock",
"//third_party/googletest:gtest",
"//zircon/public/lib/syslog",
"//zircon/system/fidl/fuchsia-logger",
]
}