blob: 4a8f2a101244e16b100460a5126658e6e0432cfe [file]
# 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/components.gni")
import("//build/test.gni")
group("test") {
testonly = true
deps = [ ":fastboot-test-package" ]
}
test("fastboot-test") {
sources = [ "fastboot-test.cc" ]
include_dirs = [ "../include" ]
deps = [
"..:lib",
"//sdk/fidl/fuchsia.boot:fuchsia.boot_llcpp",
"//src/lib/fxl",
"//src/lib/storage/vfs/cpp",
"//src/storage/testing:fake-paver",
"//zircon/system/ulib/async-loop:async-loop-cpp",
"//zircon/system/ulib/async-loop:async-loop-default",
"//zircon/system/ulib/zx",
"//zircon/system/ulib/zxtest",
]
}
fuchsia_unittest_package("fastboot-test-package") {
package_name = "fastboot-test"
deps = [ ":fastboot-test" ]
}