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

Unified Diff: examples/indirect_service/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/indirect_service/BUILD.gn
diff --git a/examples/indirect_service/BUILD.gn b/examples/indirect_service/BUILD.gn
index 44b1139cb721f3f7caf568949a36dc27cf7b9765..880dc5f142d80db1fe0e090d61e89980c996db19 100644
--- a/examples/indirect_service/BUILD.gn
+++ b/examples/indirect_service/BUILD.gn
@@ -16,7 +16,9 @@ group("indirect_service") {
mojo_native_application("indirect_service_demo") {
output_name = "indirect_service_demo"
- sources = [ "indirect_service_demo.cc" ]
+ sources = [
+ "indirect_service_demo.cc",
+ ]
deps = [
":bindings",
@@ -32,7 +34,9 @@ mojo_native_application("indirect_service_demo") {
mojo_native_application("integer_service") {
output_name = "integer_service"
- sources = [ "integer_service.cc" ]
+ sources = [
+ "integer_service.cc",
+ ]
deps = [
":bindings",
@@ -45,7 +49,9 @@ mojo_native_application("integer_service") {
mojo_native_application("indirect_integer_service") {
output_name = "indirect_integer_service"
- sources = [ "indirect_integer_service.cc" ]
+ sources = [
+ "indirect_integer_service.cc",
+ ]
deps = [
":bindings",
@@ -56,5 +62,7 @@ mojo_native_application("indirect_integer_service") {
}
mojom("bindings") {
- sources = [ "indirect_service_demo.mojom" ]
+ sources = [
+ "indirect_service_demo.mojom",
+ ]
}

Powered by Google App Engine
This is Rietveld 408576698