| # Copyright 2026 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") |
| |
| template("ext4_test_server") { |
| _image_resource = "${target_name}_image" |
| resource(_image_resource) { |
| sources = [ invoker.image ] |
| outputs = [ "data/ext4_image.img" ] |
| } |
| fuchsia_package(target_name) { |
| package_name = "ext4_test_pkg" |
| testonly = true |
| deps = [ |
| ":$_image_resource", |
| "//src/storage/ext4/testing:server", |
| ] |
| } |
| } |