blob: 2ef96cf11e00789e0d731ba208a0b10f56686236 [file] [log] [blame]
import("//build/package.gni")
import("//build/test/test_package.gni")
import("//build/testing/environments.gni")
executable("agent_services_test") {
testonly = true
output_name = "agent_services_test"
sources = [
"agent_services_test.cc",
]
deps = [
"//peridot/public/lib/modular_test_harness/cpp:test_harness_fixture",
"//sdk/fidl/fuchsia.modular.testing",
"//sdk/lib/sys/cpp",
"//sdk/lib/sys/cpp/testing:integration",
"//src/lib/fxl/test:gtest_main",
]
}
test_package("agent_services_tests") {
tests = [
{
name = "agent_services_test"
environments = basic_envs
},
]
deps = [
":agent_services_test",
]
}