| # Copyright 2023 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. |
| |
| source_set("inflight_list") { |
| testonly = true |
| |
| public_configs = [ "../../..:src_config" ] |
| |
| sources = [ "inflight_list.h" ] |
| |
| public_deps = [ |
| "//sdk/lib/magma_client", |
| "//src/graphics/magma/lib/magma/util:macros", |
| "//src/graphics/magma/lib/magma/util:status", |
| ] |
| } |
| |
| source_set("test_device_helper") { |
| public_configs = [ "../../..:src_config" ] |
| |
| public_deps = [ |
| "//sdk/fidl/fuchsia.driver.development:fuchsia.driver.development_cpp", |
| "//sdk/fidl/fuchsia.gpu.magma:fuchsia.gpu.magma_cpp", |
| "//sdk/lib/component/incoming/cpp", |
| "//src/graphics/lib/magma/src/libmagma", |
| "//third_party/googletest:gtest_no_testonly", |
| "//zircon/system/ulib/zx", |
| ] |
| |
| sources = [ "test_device_helper.h" ] |
| } |
| |
| source_set("magma_map_cpu") { |
| public_configs = [ "../../..:src_config" ] |
| |
| sources = [ |
| "magma_map_cpu.cc", |
| "magma_map_cpu.h", |
| ] |
| |
| public_deps = [ "//sdk/lib/magma_client:magma_headers" ] |
| |
| if (is_fuchsia) { |
| deps = [ "//zircon/system/ulib/zx" ] |
| } |
| } |