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

Unified Diff: build/go/rules.gni

Issue 766573003: gn format //build (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase 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/win/BUILD.gn ('k') | build/json_schema_api.gni » ('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 55dd386e4fcf39f61614dbd48c3b5a15561334af..d4b1f50c779907a4fb6e8afc54770fc509f520c4 100644
--- a/build/go/rules.gni
+++ b/build/go/rules.gni
@@ -40,23 +40,24 @@ template("go_test_binary") {
]
script = "//build/go/go.py"
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
# script will later identify the output, copy it to the target location,
# and clean up the temporary build directory.
build_dir = "${target_out_dir}/${target_name}_build"
args = [
- "--",
- "${go_build_tool}",
- rebase_path(build_dir, root_build_dir),
- rebase_path(target_out_dir, root_build_dir) + "/${target_name}",
- rebase_path("//", root_build_dir),
- "-I" + rebase_path("//"),
- " -L" + rebase_path(target_out_dir) +
- " -l" + static_library_name +
- " -lstdc++ -lpthread -lm -lglib-2.0",
- "test", "-c",
- ] + rebase_path(invoker.sources, build_dir)
+ "--",
+ "${go_build_tool}",
+ rebase_path(build_dir, root_build_dir),
+ rebase_path(target_out_dir, root_build_dir) + "/${target_name}",
+ rebase_path("//", root_build_dir),
+ "-I" + rebase_path("//"),
+ " -L" + rebase_path(target_out_dir) + " -l" + static_library_name +
+ " -lstdc++ -lpthread -lm -lglib-2.0",
+ "test",
+ "-c",
+ ] + rebase_path(invoker.sources, build_dir)
}
}
@@ -74,24 +75,27 @@ template("go_shared_library") {
}
action(target_name) {
- deps = [ ":$static_library_name" ]
+ deps = [
+ ":$static_library_name",
+ ]
script = "//build/go/go.py"
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
# script will later identify the output, copy it to the target location,
# and clean up the temporary build directory.
build_dir = "${target_out_dir}/${target_name}_build"
args = [
- "--",
- "CGO_ENABLED=1 GOOS=android GOARCH=arm GOARM=7 ${go_build_tool}",
- rebase_path(build_dir, root_build_dir),
- rebase_path(target_out_dir, root_build_dir) + "/${target_name}",
- rebase_path("//", root_build_dir),
- "-I" + rebase_path("//"),
- " -L" + rebase_path(target_out_dir) +
- " -l" + static_library_name + "",
- "build -ldflags=-shared",
- ] + rebase_path(invoker.sources, build_dir)
+ "--",
+ "CGO_ENABLED=1 GOOS=android GOARCH=arm GOARM=7 ${go_build_tool}",
+ rebase_path(build_dir, root_build_dir),
+ rebase_path(target_out_dir, root_build_dir) + "/${target_name}",
+ rebase_path("//", root_build_dir),
+ "-I" + rebase_path("//"),
+ " -L" + rebase_path(target_out_dir) + " -l" + static_library_name +
+ "",
+ "build -ldflags=-shared",
+ ] + rebase_path(invoker.sources, build_dir)
}
-}
+}
« no previous file with comments | « build/config/win/BUILD.gn ('k') | build/json_schema_api.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698