blob: 8a35dd306907ad683a9e5d3ae260efc67b2c52d7 [file] [log] [blame]
# Copyright 2020 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")
import("//build/test/test_package.gni")
test("partition-mapping") {
sources = [ "main.cc" ]
deps = [
"//sdk/fidl/fuchsia.hardware.block.partition:fuchsia.hardware.block.partition_llcpp",
"//sdk/lib/fdio",
"//src/lib/fsl",
"//src/storage/gpt",
"//zircon/public/lib/fbl",
"//zircon/public/lib/zx",
"//zircon/public/lib/zxtest",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/devmgr-integration-test",
"//zircon/system/ulib/devmgr-launcher",
"//zircon/system/ulib/fdio-caller",
]
}
test_package("partition-mapping-test") {
deps = [ ":partition-mapping" ]
tests = [
{
name = "partition-mapping"
environments = [ nelson_env ]
},
]
}