| # 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") | |
| fuchsia_package("package") { | |
| package_name = "bootstrap" | |
| deps = [ ":component" ] | |
| } | |
| fuchsia_component("component") { | |
| component_name = "bootstrap" | |
| manifest = "meta/bootstrap.cml" | |
| restricted_features = [ "allow_long_names" ] | |
| } |