blob: b6b2a4971fea7cfee2c36321a74735aff4df20e3 [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("//build/test.gni")
test("integration_tests") {
output_name = "debug_agent_integration_tests"
# Helper classes.
sources = [
"message_loop_wrapper.cc",
"message_loop_wrapper.h",
"so_wrapper.cc",
"so_wrapper.h",
]
# The actual tests.
sources += [ "dynamic_loader.cc" ]
deps = [
"//src/developer/debug/debug_agent:test_lib",
"//src/developer/debug/ipc",
"//src/lib/fxl",
"//src/lib/fxl/test:gtest_main",
"//third_party/googletest:gtest",
"//zircon/system/ulib/zx",
]
# TODO(https://fxbug.dev/42136089): delete the below and fix compiler warnings
configs += [ "//build/config:Wno-conversion" ]
}