1
0
mirror of https://github.com/dart-lang/sdk synced 2024-07-01 07:14:29 +00:00
dart-sdk/build/shim_headers.gni
lauren n. liberda 22d666d67a add tools for generating shim headers
Closes https://github.com/dart-lang/sdk/pull/51612

GitOrigin-RevId: 7e71761d5f13e9dff8d60c0287cc12fda56f9642
Change-Id: I76400e00ead54d9fc3d0dae26c2468e8401f3de8
Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/286601
Commit-Queue: Ryan Macnak <rmacnak@google.com>
Reviewed-by: Ryan Macnak <rmacnak@google.com>
2023-04-19 01:37:48 +00:00

37 lines
1023 B
Plaintext

# Copyright 2016 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
template("shim_headers") {
action_name = "gen_${target_name}"
config_name = "${target_name}_config"
shim_headers_path = "${root_gen_dir}/shim_headers/${target_name}"
config(config_name) {
include_dirs = [ shim_headers_path ]
}
action(action_name) {
script = "//tools/generate_shim_headers.py"
args = [
"--generate",
"--headers-root",
rebase_path(invoker.root_path),
"--output-directory",
rebase_path(shim_headers_path),
]
if (defined(invoker.prefix)) {
args += [
"--prefix",
invoker.prefix,
]
}
args += invoker.headers
outputs = []
foreach(h, invoker.headers) {
outputs += [ shim_headers_path + "/" + rebase_path(invoker.root_path,"//") + "/" + h ]
}
}
group(target_name) {
deps = [ ":${action_name}" ]
all_dependent_configs = [ ":${config_name}" ]
}
}