blob: 582669575295556aec5ed70160e31383353542b3 [file] [log] [blame]
# Copyright 2022 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/components.gni")
import("//build/cpp/sdk_source_set.gni")
import("//build/test.gni")
group("tests") {
testonly = true
deps = [ ":duplicate-header-test" ]
}
executable("duplicate-header-test") {
testonly = true
sources = [ "duplicate_header_unittest.cc" ]
deps = [
"//sdk/fidl/fuchsia.diagnostics",
"//sdk/lib/syslog/cpp",
"//sdk/lib/syslog/structured_backend",
"//third_party/googletest:gtest",
"//zircon/system/ulib/syslog",
]
}