blob: 817255f0d22aedd406f85e024d7171c1c1f2e3fd [file] [log] [blame] [edit]
# Copyright 2019 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/dart/dart_library.gni")
import("//build/flutter/flutter_component.gni")
dart_library("lib") {
package_name = "a11y-demo"
sources = [ "main.dart" ]
deps = [
"//sdk/dart/fuchsia_services",
"//third_party/dart-pkg/git/flutter/packages/flutter",
]
}
flutter_component("component") {
manifest = "meta/a11y-demo.cml"
main_package = "a11y-demo"
component_name = "a11y-demo"
deps = [ ":lib" ]
}
fuchsia_package("a11y-demo") {
deps = [ ":component" ]
}