blob: c6b7622ca9b9faa71001ba8bbcc12f1cf9f581e8 [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_component.gni")
import("//flutter/tools/fuchsia/dart/dart_library.gni")
import("//flutter/tools/fuchsia/gn-sdk/package.gni")
dart_library("lib") {
testonly = true
package_name = "dart_echo_server"
null_safe = true
source_dir = "."
sources = [ "main.dart" ]
deps = [
"//flutter/shell/platform/fuchsia/dart_runner/tests/fidl/flutter.example.echo:echo",
"//flutter/tools/fuchsia/dart:fidl",
"//flutter/tools/fuchsia/dart:fuchsia_services",
"//flutter/tools/fuchsia/fidl:fuchsia.logger",
"//flutter/tools/fuchsia/fidl:fuchsia.test",
]
}
# Dart component that serves the test Echo FIDL protocol, built using the Dart AOT runner
dart_component("aot_component") {
testonly = true
null_safe = true
main_package = "dart_echo_server"
manifest = "meta/dart-aot-echo-server.cml"
component_name = "dart_aot_echo_server"
deps = [ ":lib" ]
}
# Dart component that serves the test Echo FIDL protocol, built using the Dart AOT runner
dart_component("jit_component") {
testonly = true
null_safe = true
main_package = "dart_echo_server"
manifest = "meta/dart-jit-echo-server.cml"
component_name = "dart_jit_echo_server"
deps = [ ":lib" ]
}
fuchsia_package("aot_echo_package") {
testonly = true
package_name = "dart_aot_echo_server"
deps = [
":aot_component",
# "OOT" copy of the runner used by tests, to avoid conflicting with the
# runners in the base fuchsia image.
# TODO(fxbug.dev/106575): Fix this with subpackages.
"//flutter/shell/platform/fuchsia/dart_runner:oot_dart_aot_runner",
]
}
fuchsia_package("jit_echo_package") {
testonly = true
package_name = "dart_jit_echo_server"
deps = [
":jit_component",
# "OOT" copy of the runner used by tests, to avoid conflicting with the
# runners in the base fuchsia image.
# TODO(fxbug.dev/106575): Fix this with subpackages.
"//flutter/shell/platform/fuchsia/dart_runner:oot_dart_jit_runner",
]
}