Index: build/go/rules.gni |
diff --git a/build/go/rules.gni b/build/go/rules.gni |
index d4b1f50c779907a4fb6e8afc54770fc509f520c4..9f9785493dead0ca7c39037e6885f64af4f0f6f9 100644 |
--- a/build/go/rules.gni |
+++ b/build/go/rules.gni |
@@ -39,7 +39,9 @@ template("go_test_binary") { |
":$static_library_name", |
] |
script = "//build/go/go.py" |
- outputs = [ "${target_out_dir}/${target_name}" ] |
+ outputs = [ |
+ "${target_out_dir}/${target_name}", |
+ ] |
# Since go test does not permit specifying an output directory or output |
# binary name, we create a temporary build directory, and the python |
@@ -79,7 +81,9 @@ template("go_shared_library") { |
":$static_library_name", |
] |
script = "//build/go/go.py" |
- outputs = [ "${target_out_dir}/${target_name}" ] |
+ outputs = [ |
+ "${target_out_dir}/${target_name}", |
+ ] |
# Since go test does not permit specifying an output directory or output |
# binary name, we create a temporary build directory, and the python |