blob: ceaf8299f4a1b9a362b91d4a429189dd46e88523 [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 = "parent-view"
sources = [ "parent_view.dart" ]
deps = [
"//flutter/shell/platform/fuchsia/dart:args",
"//flutter/shell/platform/fuchsia/dart:vector_math",
"//flutter/tools/fuchsia/dart:fuchsia_services",
"//flutter/tools/fuchsia/dart:zircon",
"//flutter/tools/fuchsia/fidl:fuchsia.sys",
"//flutter/tools/fuchsia/fidl:fuchsia.ui.app",
"//flutter/tools/fuchsia/fidl:fuchsia.ui.views",
]
}
flutter_component("component") {
main_package = "parent-view"
component_name = "parent-view"
main_dart = "parent_view.dart"
manifest = rebase_path("meta/parent-view.cml")
deps = [ ":lib" ]
}
fuchsia_package("package") {
package_name = "parent-view"
deps = [ ":component" ]
}