blob: 31adf515e27a2bb92d1bf7b46bf42c5081bd34c1 [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_module1") {
testonly = true
meta = [
{
path = "meta/parent_child_test_child_module1.cmx"
dest = "parent_child_test_child_module1.cmx"
},
]
sources = [
"parent_child_test_child_module1.cc",
]
deps = [
":defs",
"//garnet/public/fidl/fuchsia.ui.viewsv1",
"//peridot/public/fidl/fuchsia.modular",
"//peridot/public/lib/app_driver/cpp:module_driver",
"//peridot/public/lib/integration_testing/cpp",
"//peridot/tests/common:defs",
"//zircon/public/lib/async-loop-cpp",
]
}
executable_package("parent_child_test_child_module2") {
testonly = true
meta = [
{
path = "meta/parent_child_test_child_module2.cmx"
dest = "parent_child_test_child_module2.cmx"
},
]
sources = [
"parent_child_test_child_module2.cc",
]
deps = [
":defs",
"//garnet/public/fidl/fuchsia.ui.viewsv1",
"//peridot/public/fidl/fuchsia.modular",
"//peridot/public/lib/app_driver/cpp:module_driver",
"//peridot/public/lib/integration_testing/cpp",
"//peridot/tests/common:defs",
"//zircon/public/lib/async-loop-cpp",
]
}
executable_package("parent_child_test_parent_module") {
testonly = true
meta = [
{
path = "meta/parent_child_test_parent_module.cmx"
dest = "parent_child_test_parent_module.cmx"
},
]
sources = [
"parent_child_test_parent_module.cc",
]
deps = [
":defs",
"//garnet/public/fidl/fuchsia.ui.viewsv1",
"//garnet/public/lib/callback",
"//peridot/public/fidl/fuchsia.modular",
"//peridot/public/lib/app_driver/cpp:module_driver",
"//peridot/public/lib/integration_testing/cpp",
"//peridot/tests/common:defs",
"//zircon/public/lib/async-loop-cpp",
]
}