| Index: tools/gn/example/build/toolchain/BUILD.gn
|
| diff --git a/tools/gn/example/build/toolchain/BUILD.gn b/tools/gn/example/build/toolchain/BUILD.gn
|
| index 27a1e31dd714d1a5bb420852fac9e6322a473d76..77e33fecf61aa24580990fd5ca1119b2705f36ef 100644
|
| --- a/tools/gn/example/build/toolchain/BUILD.gn
|
| +++ b/tools/gn/example/build/toolchain/BUILD.gn
|
| @@ -29,7 +29,7 @@ toolchain("gcc") {
|
| description = "AR {{target_output_name}}{{output_extension}}"
|
| rspfile_content = "{{inputs}}"
|
| outputs = [
|
| - "{{target_out_dir}}/{{target_output_name}}{{output_extension}}"
|
| + "{{target_out_dir}}/{{target_output_name}}{{output_extension}}",
|
| ]
|
| default_output_extension = ".a"
|
| output_prefix = "lib"
|
| @@ -63,7 +63,9 @@ toolchain("gcc") {
|
| command = "g++ {{ldflags}} -o $outfile -Wl,--start-group @$rspfile {{solibs}} -Wl,--end-group {{libs}}"
|
| description = "LINK $outfile"
|
| rspfile_content = "{{inputs}}"
|
| - outputs = [ outfile ]
|
| + outputs = [
|
| + outfile,
|
| + ]
|
| }
|
|
|
| tool("stamp") {
|
|
|