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

Unified Diff: examples/echo/BUILD.gn

Issue 773283006: Run gn format on all BUILD.gn files (gn version 306668) (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: 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
Index: examples/echo/BUILD.gn
diff --git a/examples/echo/BUILD.gn b/examples/echo/BUILD.gn
index b16a2fbed46372b06989243906fa3c594ca43221..49189580d398783afa9ca54a6351d3226bfd611d 100644
--- a/examples/echo/BUILD.gn
+++ b/examples/echo/BUILD.gn
@@ -8,7 +8,7 @@ import("//mojo/public/tools/bindings/mojom.gni")
group("echo") {
deps = [
":client",
- ":service"
+ ":service",
]
}
@@ -22,7 +22,9 @@ mojo_native_application("client") {
"//mojo/public/cpp/utility",
]
- sources = [ "echo_client.cc" ]
+ sources = [
+ "echo_client.cc",
+ ]
}
mojo_native_application("service") {
@@ -35,9 +37,13 @@ mojo_native_application("service") {
"//mojo/public/cpp/utility",
]
- sources = [ "echo_service.cc" ]
+ sources = [
+ "echo_service.cc",
+ ]
}
mojom("bindings") {
- sources = [ "echo_service.mojom" ]
+ sources = [
+ "echo_service.mojom",
+ ]
}

Powered by Google App Engine
This is Rietveld 408576698