blob: 73428711378d8379c6bf3dc283c8e256c1782b27 [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("//garnet/public/lib/fidl/fidl.gni")
group("queue_persistence") {
testonly = true
public_deps = [
":queue_persistence_test_agent",
":queue_persistence_test_module",
]
}
executable("queue_persistence_test_module") {
testonly = true
sources = [
"queue_persistence_test_module.cc",
]
deps = [
":queue_persistence_test_agent_interface",
"//garnet/public/lib/fsl",
"//peridot/lib/testing",
"//peridot/public/lib/app_driver/cpp:module_driver",
"//peridot/public/lib/component/fidl",
"//peridot/public/lib/module/fidl",
"//peridot/public/lib/story/fidl",
]
}
executable("queue_persistence_test_agent") {
testonly = true
sources = [
"queue_persistence_test_agent.cc",
]
deps = [
":queue_persistence_test_agent_interface",
"//garnet/public/lib/fsl",
"//peridot/lib/fidl:message_receiver_client",
"//peridot/lib/testing",
"//peridot/public/lib/agent/fidl",
"//peridot/public/lib/app_driver/cpp:agent_driver",
"//peridot/public/lib/component/fidl",
]
}
fidl("queue_persistence_test_agent_interface") {
sources = [
"queue_persistence_test_agent_interface.fidl",
]
}