blob: 00463b5886f5df4e4c96cda45c9a20f5139cd752 [file] [log] [blame]
# Copyright 2019 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/cpp/sdk_source_set.gni")
sdk_source_set("cpp") {
testonly = true
category = "partner"
sdk_name = "sys_cpp_testing"
include_base = "//sdk"
sources = [
"component_context_provider.cc",
"component_context_provider.h",
"enclosing_environment.cc",
"enclosing_environment.h",
"fake_component.cc",
"fake_component.h",
"fake_launcher.cc",
"fake_launcher.h",
"launcher_impl.cc",
"launcher_impl.h",
"service_directory_provider.cc",
"service_directory_provider.h",
"test_with_environment.cc",
"test_with_environment.h",
]
public_deps = [
"//sdk/fidl/fuchsia.io",
"//sdk/lib/fit",
"//sdk/lib/sys/cpp",
"//sdk/lib/vfs/cpp",
"//zircon/system/ulib/async-loop/testing:async-loop-testing",
"//zircon/system/ulib/zx",
]
deps = [ "//sdk/lib/fdio" ]
public_configs = [ "//sdk/config" ]
}
# DEPRECATED, use `:cpp` instead.
group("unit") {
# TODO(fxbug.dev/82270): Remove or refactor deprecated references to `:unit`.
testonly = true
public_deps = [ ":cpp" ]
}
source_set("integration_fixture") {
testonly = true
sources = [ "test_with_environment_fixture.h" ]
public_deps = [
":enclosing_environment",
"//src/lib/testing/loop_fixture",
"//zircon/system/ulib/async-loop/testing:async-loop-testing",
]
}
source_set("enclosing_environment") {
# TODO(fxbug.dev/82270): Consider renaming or refactoring this target.
testonly = true
sources = [
"component_interceptor.cc",
"component_interceptor.h",
]
deps = [ "//third_party/rapidjson" ]
public_deps = [
":cpp",
"//sdk/fidl/fuchsia.sys",
"//sdk/lib/fidl/cpp",
"//sdk/lib/sys/cpp",
"//sdk/lib/vfs/cpp",
"//zircon/system/ulib/async-default",
]
public_configs = [ "//sdk/config" ]
}