0

Reformat all gn files in /chromeos/components/multidevice.

`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=khorimoto@chromium.org

Bug: 1041419
Change-Id: I3ac659a55e0fa6ab8a0068f8e4fd24616f7dee33
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1997812
Auto-Submit: Nico Weber <thakis@chromium.org>
Reviewed-by: Kyle Horimoto <khorimoto@chromium.org>
Commit-Queue: Kyle Horimoto <khorimoto@chromium.org>
Cr-Commit-Position: refs/heads/master@{#730811}
This commit is contained in:
Nico Weber
2020-01-13 20:59:28 +00:00
committed by Commit Bot
parent a8482a8a62
commit 918fe7f6e0
5 changed files with 8 additions and 24 deletions
chromeos/components/multidevice
BUILD.gn
debug_webui
logging
mojom

@ -47,9 +47,7 @@ static_library("test_support") {
"remote_device_test_util.h",
]
public_deps = [
":multidevice",
]
public_deps = [ ":multidevice" ]
deps = [
"//base",

@ -35,7 +35,5 @@ static_library("debug_webui") {
"//ui/resources",
"//ui/webui",
]
public_deps = [
"//chromeos/services/device_sync/public/mojom",
]
public_deps = [ "//chromeos/services/device_sync/public/mojom" ]
}

@ -19,9 +19,7 @@ js_library("webui") {
}
js_library("logs") {
deps = [
":webui",
]
deps = [ ":webui" ]
}
js_library("proximity_auth") {

@ -10,16 +10,12 @@ static_library("logging") {
"logging.h",
]
deps = [
"//base",
]
deps = [ "//base" ]
}
source_set("unit_tests") {
testonly = true
sources = [
"logging_unittest.cc",
]
sources = [ "logging_unittest.cc" ]
deps = [
":logging",

@ -5,21 +5,15 @@
import("//mojo/public/tools/bindings/mojom.gni")
mojom("mojom") {
sources = [
"multidevice_types.mojom",
]
sources = [ "multidevice_types.mojom" ]
public_deps = [
"//mojo/public/mojom/base",
]
public_deps = [ "//mojo/public/mojom/base" ]
}
source_set("unit_tests") {
testonly = true
sources = [
"multidevice_mojom_traits_unittest.cc",
]
sources = [ "multidevice_mojom_traits_unittest.cc" ]
deps = [
":mojom",