| Index: tools/gn/example/BUILD.gn
|
| diff --git a/tools/gn/example/BUILD.gn b/tools/gn/example/BUILD.gn
|
| index 2cb013686d761bfba38679e9b24dad3df7861acd..58af95230440d10161a321fad8edeeb7ed57dbd8 100644
|
| --- a/tools/gn/example/BUILD.gn
|
| +++ b/tools/gn/example/BUILD.gn
|
| @@ -3,7 +3,9 @@
|
| # found in the LICENSE file.
|
|
|
| executable("hello") {
|
| - sources = [ "hello.cc" ]
|
| + sources = [
|
| + "hello.cc",
|
| + ]
|
|
|
| deps = [
|
| ":hello_static",
|
| @@ -14,7 +16,7 @@ executable("hello") {
|
| shared_library("hello_shared") {
|
| sources = [
|
| "hello_shared.cc",
|
| - "hello_shared.h"
|
| + "hello_shared.h",
|
| ]
|
|
|
| defines = [ "HELLO_SHARED_IMPLEMENTATION" ]
|
|
|