blob: 0a5fdec96fce8c0283d1efcb2730b6b3821c1e60 [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("//sdk/cts/build/cts_element.gni")
import("//sdk/cts/build/cts_source_library.gni")
import("//sdk/cts/build/cts_version.gni")
import("//sdk/cts/build/write_cts_file.gni")
# A source_set that can be used in CTS.
#
# An equivalent to the built-in source_set, but ensures dependencies are allowed
# in CTS. Creates an SDK atom so that this target can be released in the CTS SDK.
#
# Example:
# ```
# cts_source_set("my-source-set") {
# sources = [
# "//sdk/cts/tests/my_test/my_lib.h",
# "//sdk/cts/tests/my_test/my_lib.cc",
# ]
# }
# ```
#
# Parameters:
#
# dest (optional)
# Location to copy this target to in the CTS archive.
# Dest should only be specified if the target is not in //sdk/cts. If the
# target is in //sdk/cts, it will be placed in the same path in the CTS
# archive.
# Type: string
template("cts_source_set") {
invoker_deps = []
if (defined(invoker.deps)) {
invoker_deps += invoker.deps
}
if (defined(invoker.public_deps)) {
invoker_deps += invoker.public_deps
}
if (invoker_deps != [] && cts_version == "") {
verify_target = target_name + "_verify_deps"
}
write_file_target = target_name + "_cts_file"
if (defined(verify_target)) {
cts_element(verify_target) {
deps = invoker_deps
invoker_label = get_label_info(invoker.target_name, "label_no_toolchain")
}
}
write_cts_file(write_file_target) {
}
source_set(target_name) {
forward_variables_from(invoker,
"*",
[
"dest",
"non_cts_deps",
])
if (!defined(deps)) {
deps = []
}
if (defined(verify_target)) {
deps += [ ":$verify_target" ]
}
deps += [ ":$write_file_target" ]
}
current_dir = get_label_info(":${target_name}", "dir")
is_prebuilt_cts =
string_replace(current_dir, "//prebuilt/cts", "") != current_dir
if (!is_prebuilt_cts) {
cts_source_library(target_name) {
forward_variables_from(invoker,
[
"deps",
"dest",
"non_cts_deps",
"public",
"public_deps",
"sources",
"testonly",
])
}
}
}
set_defaults("cts_source_set") {
configs = default_common_binary_configs
}