blob: 24b89befe18b8f25d3a43610d96177c862e14b39 [file] [log] [blame]
# 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")
group("tests") {
testonly = true
deps = [ ":hello-world-dart-test" ]
}
dart_library("lib") {
package_name = "hello-world"
null_safe = true
source_dir = "lib"
sources = [ "main.dart" ]
deps = [
"//sdk/dart/fuchsia",
"//sdk/dart/zircon",
]
}
dart_component("hello-world-dart-component") {
component_name = "hello-world-dart"
manifest = "meta/hello_world_dart.cmx"
main_package = "hello-world"
deps = [ ":lib" ]
}
# Dart test component executed by dart_runner.
dart_test_component("hello-world-dart-test-component") {
component_name = "hello-world-dart-test"
manifest = "meta/hello_world_dart_test.cml"
sources = [ "hello_world.dart" ]
deps = [
":lib",
"//sdk/dart/fuchsia",
"//third_party/dart-pkg/pub/test",
]
}
fuchsia_test_package("hello-world-dart-test") {
test_components = [ ":hello-world-dart-test-component" ]
}
fuchsia_package("hello-world-dart") {
deps = [ ":hello-world-dart-component" ]
}