blob: 586ac57ba4c747a1495411dee35bffdbffda76b7 [file] [log] [blame]
# Copyright 2021 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
# Cxxbridge is a library that allows safe interop between Rust and C++. In order
# to integrate it into GN, we depend on the cxxbridge-cmd crate, which provides
# the cxxbridge binary used here. See https://cxx.rs/ for more information on
# cxx and https://crates.io/crates/cxxbridge-cmd for cxxbridge-cmd.
# Generate cxxbridge header only.
#
template("cxxbridge_header") {
action_name = "${target_name}_gen"
action_foreach(action_name) {
forward_variables_from(invoker, [ "sources" ])
assert(defined(sources), "sources must be set")
script = "//common-mk/file_generator_wrapper.py"
outformat = "{{source_gen_dir}}/{{source_file_part}}.h"
args = [
"cxxbridge",
"{{source}}",
"--header",
"--output",
outformat,
]
outputs = [ outformat ]
}
all_dependent_config_name = "_${target_name}_all_dependent_config"
config(all_dependent_config_name) {
include_dirs = [ "${target_gen_dir}" ]
}
generated_file(target_name) {
outputs = [ "${target_gen_dir}/${target_name}_gen_files.json" ]
data_keys = [ "generated_cxxbridge_header" ]
all_dependent_configs = [ ":${all_dependent_config_name}" ]
deps = [ ":${action_name}" ]
}
}
# TODO(b/176847216): Need to add cxxbridge_cc_library for generating both the
# header and code for interacting with rust code.