| # 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") |
| import("//build/dart/dart_component.gni") |
| import("//build/dart/dart_library.gni") |
| import("//build/dart/dart_test_component.gni") |
| import("//build/dart/test.gni") |
| |
| dart_library("lib") { |
| package_name = "inspect_dart_codelab" |
| sources = [ |
| "main.dart", |
| "reverser.dart", |
| ] |
| source_dir = "lib" |
| |
| deps = [ |
| "//examples/diagnostics/inspect/codelab/fidl:fuchsia.examples.inspect_dart", |
| "//sdk/dart/fidl", |
| "//sdk/dart/fuchsia_inspect", |
| "//sdk/dart/fuchsia_logger", |
| "//sdk/dart/fuchsia_services", |
| "//third_party/dart-pkg/pub/meta", |
| ] |
| } |
| |
| dart_component("part_4") { |
| component_name = "part_4" |
| main_dart = "main.dart" |
| main_package = "inspect_dart_codelab" |
| manifest = "meta/part_4.cml" |
| deps = [ ":lib" ] |
| } |