Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(3045)

Unified Diff: build/go/rules.gni

Issue 774353003: gn format // (the rest) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase net Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « build/config/android/rules.gni ('k') | build/secondary/third_party/android_tools/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « build/config/android/rules.gni ('k') | build/secondary/third_party/android_tools/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698