blob: b6fb4127f396324ff9cdbe2e5856bb88126ecb2f [file] [log] [blame]
# Copyright 2018 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/dart/dart_app.gni")
import("//build/dart/fidl_move.gni")
import("//build/fidl/fidl.gni")
fidl("test-foo-fidl") {
# TODO(fxb/35879): Remove lint exclusions by fixing known FIDL lint violations in this target
excluded_checks = [
"disallowed-library-name-component",
"invalid-case-for-decl-name",
"string-bounds-not-specified",
]
name = "test.fuchsia.service.foo"
sources = [ "fidl/foo.fidl" ]
}
# The foo test server used for integration testing
dart_app("fuchsia-services-foo-test-server") {
main_dart = "lib/main.dart"
meta = [
{
path = rebase_path("meta/fuchsia-services-foo-test-server.cmx")
dest = "fuchsia-services-foo-test-server.cmx"
},
]
sources = [ "main.dart" ]
deps = [
":test-foo-fidl",
"//sdk/dart/fidl",
"//sdk/dart/fuchsia_services",
]
}