| # Copyright 2016 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/lib/magma/gnbuild/magma.gni") |
| |
| group("integration") { |
| testonly = true |
| |
| public_deps = [ |
| ":magma_integration_tests", |
| ] |
| } |
| |
| executable("magma_integration_tests") { |
| testonly = true |
| |
| sources = [ |
| "main.cc", |
| "test_hang_recovery.cc", |
| "test_shutdown.cc", |
| ] |
| |
| public_deps = [ |
| "$magma_build_root:libmagma", |
| "$magma_build_root/include:magma_abi", |
| "$magma_build_root/src/magma_util", |
| "$magma_build_root/src/magma_util/platform:buffer", # this is weird |
| "$magma_build_root/tests/helper:platform_device_helper", |
| "//third_party/gtest", |
| ] |
| } |