blob: 8221576c635d754743c91aa080777b6fb83e9d09 [file] [log] [blame]
# Copyright 2017 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("//peridot/build/executable_package.gni")
source_set("defs") {
testonly = true
sources = [
"defs.h",
]
}
executable_package("parent_child_test_child_module") {
testonly = true
sources = [
"parent_child_test_child_module.cc",
]
deps = [
":defs",
"//garnet/public/fidl/fuchsia.ui.viewsv1",
"//peridot/lib/testing",
"//peridot/public/fidl/fuchsia.modular",
"//peridot/public/lib/app_driver/cpp:module_driver",
"//peridot/tests/common:defs",
"//zircon/public/lib/async-loop-cpp",
]
}
executable_package("parent_child_test_parent_module") {
testonly = true
sources = [
"parent_child_test_parent_module.cc",
]
deps = [
":defs",
"//garnet/public/fidl/fuchsia.ui.viewsv1",
"//garnet/public/lib/callback",
"//peridot/lib/testing",
"//peridot/public/fidl/fuchsia.modular",
"//peridot/public/lib/app_driver/cpp:module_driver",
"//peridot/tests/common:defs",
"//zircon/public/lib/async-loop-cpp",
]
}