| Index: build/shim_headers.gni
|
| diff --git a/build/shim_headers.gni b/build/shim_headers.gni
|
| index a37bd4a1d8d72a5448b23d2f26549acd82e2525d..c8124ca76582bc6c485032ab77849b6b6692bf49 100644
|
| --- a/build/shim_headers.gni
|
| +++ b/build/shim_headers.gni
|
| @@ -19,7 +19,11 @@ template("shim_headers") {
|
| rebase_path(invoker.root_path),
|
| "--output-directory",
|
| rebase_path(shim_headers_path),
|
| - ] + invoker.headers
|
| + ]
|
| + if (defined(invoker.prefix)) {
|
| + args += [ "--prefix", invoker.prefix ]
|
| + }
|
| + args += invoker.headers
|
|
|
| outputs = process_file_template(invoker.headers,
|
| "${shim_headers_path}/{{source_file_part}}")
|
|
|