mirror of
https://github.com/dart-lang/sdk
synced 2024-11-02 10:49:00 +00:00
22d666d67a
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>
36 lines
1,023 B
Text
36 lines
1,023 B
Text
# 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}" ]
|
|
}
|
|
}
|