0

Reformat all gn files in /chromecast/external_mojo.

`gn format` recently changed its formatting behavior
for deps, source, and a few other elements when they
are assigned (with =) single-element lists to be consistent
with the formatting of updates (with +=) with single-element.

Now that we've rolled in a GN binary with the change,
reformat all files so that people don't get presubmit
warnings due to this.

This CL was uploaded by git cl split.

R=kmackay@chromium.org

Bug: 1041419
Change-Id: I0b718719c39034ee3b4c568a0ffffc4752e95e0b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1998506
Auto-Submit: Nico Weber <thakis@chromium.org>
Reviewed-by: Kenneth MacKay <kmackay@chromium.org>
Commit-Queue: Kenneth MacKay <kmackay@chromium.org>
Cr-Commit-Position: refs/heads/master@{#730825}
This commit is contained in:
Nico Weber
2020-01-13 21:11:35 +00:00
committed by Commit Bot
parent 9341d28b24
commit 165c59e92f
3 changed files with 7 additions and 21 deletions
chromecast/external_mojo
external_service_support
public

@ -36,15 +36,11 @@ source_set("process_setup") {
}
source_set("service_process") {
sources = [
"service_process.h",
]
sources = [ "service_process.h" ]
}
source_set("standalone_service_main") {
sources = [
"standalone_service_main.cc",
]
sources = [ "standalone_service_main.cc" ]
deps = [
":external_service",
":process_setup",
@ -52,9 +48,7 @@ source_set("standalone_service_main") {
"//chromecast/external_mojo/public/cpp:common",
"//mojo/core/embedder",
]
public_deps = [
":service_process",
]
public_deps = [ ":service_process" ]
}
source_set("chromium_service") {
@ -73,9 +67,7 @@ source_set("chromium_service") {
}
executable("standalone_mojo_broker") {
sources = [
"standalone_mojo_broker.cc",
]
sources = [ "standalone_mojo_broker.cc" ]
deps = [
":process_setup",
"//base",

@ -7,9 +7,7 @@ source_set("common") {
"common.cc",
"common.h",
]
deps = [
"//base",
]
deps = [ "//base" ]
}
source_set("external_mojo_broker") {

@ -5,11 +5,7 @@
import("//mojo/public/tools/bindings/mojom.gni")
mojom("mojom") {
sources = [
"connector.mojom",
]
sources = [ "connector.mojom" ]
public_deps = [
"//mojo/public/mojom/base",
]
public_deps = [ "//mojo/public/mojom/base" ]
}