blob: 9935ef0d26388977a72eb9f28c4e24486e2502de [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/fidl/fidl.gni")
source_set("test") {
testonly = true
public = [
"fidl_types.h",
"frobinator_impl.h",
]
sources = [
"fidl_types.cc",
"frobinator_impl.cc",
]
public_deps = [
":frobinator",
]
deps = [
"//garnet/public/lib/fidl/cpp",
"//third_party/googletest:gtest",
]
public_configs = [ "//garnet/public:config" ]
}
fidl("frobinator") {
name = "fidl.test.frobinator"
sources = [
"frobinator.fidl",
]
}