blob: 69a294ec058e71989a9f1a57156a0a79568ebb3d [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_test_component.gni")
dart_test_component("integration-test-component") {
component_name = "fuchsia-logger-integration-tests"
manifest = "meta/fuchsia-logger-integration-tests.cmx"
sources = [ "log_integration.dart" ]
deps = [
"//sdk/dart/fidl",
"//sdk/dart/fuchsia_logger",
"//sdk/dart/fuchsia_services",
"//sdk/fidl/fuchsia.logger",
"//third_party/dart-pkg/pub/test",
]
}
fuchsia_test_package("fuchsia-logger-integration-tests") {
package_deps_for_infra_only = [ dart_default_build_cfg.runner_dep ]
test_components = [ ":integration-test-component" ]
}