| # 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") |
| import("//build/testing/cc_test_executable.gni") |
| |
| group("tests") { |
| testonly = true |
| deps = [ ":duplicate-header-test" ] |
| } |
| |
| cc_test_executable("duplicate-header-test") { |
| testonly = true |
| sources = [ "duplicate_header_unittest.cc" ] |
| deps = [ |
| "//sdk/fidl/fuchsia.diagnostics:fuchsia.diagnostics_cpp", |
| "//sdk/lib/syslog/cpp", |
| "//sdk/lib/syslog/structured_backend", |
| "//third_party/googletest:gtest", |
| "//zircon/system/ulib/syslog", |
| ] |
| } |