blob: c3897457e23475193914f49f1265a76494aa6e90 [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.
executable("integration_tests") {
testonly = true
output_name = "debug_agent_integration_tests"
sources = [
"message_loop_wrapper.cc",
"message_loop_wrapper.h",
"mock_stream_backend.cc",
"mock_stream_backend.h",
"so_wrapper.cc",
"so_wrapper.h",
]
# The actual tests.
sources += [
"breakpoint_test.cc",
"write_registers_test.cc",
]
deps = [
"//garnet/bin/debug_agent:lib",
"//garnet/lib/debug_ipc:client",
"//garnet/public/lib/component/cpp:environment_services",
"//garnet/public/lib/fxl",
"//garnet/public/lib/fxl/test:gtest_main",
"//garnet/public/lib/svc/cpp",
"//third_party/googletest:gtest",
"//zircon/public/lib/zx",
]
}