blob: dedf77c3eb950cfbc413a1953cc16917d201a2b4 [file] [log] [blame]
# Copyright 2013 The Flutter 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/fuchsia/sdk.gni")
import("//flutter/tools/fuchsia/dart/dart_library.gni")
import("//flutter/tools/fuchsia/flutter/flutter_component.gni")
import("//flutter/tools/fuchsia/gn-sdk/package.gni")
dart_library("lib") {
package_name = "child-view"
sources = [ "child_view.dart" ]
}
flutter_component("component") {
main_package = "child-view"
component_name = "child-view"
main_dart = "child_view.dart"
manifest = rebase_path("meta/child-view.cml")
deps = [ ":lib" ]
}
fuchsia_package("package") {
package_name = "child-view"
deps = [ ":component" ]
}