Commit 25622727 authored by Nico Weber's avatar Nico Weber Committed by Commit Bot

Reformat all gn files in /chrome/common/BUILD.gn.

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

Bug: 1041419
Change-Id: Id5fd33ee7d25b36a3197b763f8c08d3f5cdd24c6
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1998032
Auto-Submit: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarMichael Wasserman <msw@chromium.org>
Commit-Queue: Nico Weber <thakis@chromium.org>
Cr-Commit-Position: refs/heads/master@{#732465}
parent b82bb6d5
...@@ -67,9 +67,7 @@ source_set("channel_info") { ...@@ -67,9 +67,7 @@ source_set("channel_info") {
sources += [ "channel_info_posix.cc" ] sources += [ "channel_info_posix.cc" ]
} }
deps = [ deps = [ "//build:branding_buildflags" ]
"//build:branding_buildflags",
]
public_deps = [ public_deps = [
"//base", "//base",
...@@ -89,9 +87,7 @@ source_set("ini_parser") { ...@@ -89,9 +87,7 @@ source_set("ini_parser") {
"ini_parser.cc", "ini_parser.cc",
"ini_parser.h", "ini_parser.h",
] ]
deps = [ deps = [ "//base" ]
"//base",
]
} }
# Use a static library here because many test binaries depend on this but don't # Use a static library here because many test binaries depend on this but don't
...@@ -578,9 +574,7 @@ component("chrome_features") { ...@@ -578,9 +574,7 @@ component("chrome_features") {
"//rlz/buildflags", "//rlz/buildflags",
] ]
public_deps = [ public_deps = [ "//ui/base:buildflags" ]
"//ui/base:buildflags",
]
} }
static_library("constants") { static_library("constants") {
...@@ -782,9 +776,7 @@ mojom("mojo_bindings") { ...@@ -782,9 +776,7 @@ mojom("mojo_bindings") {
} }
mojom("search_mojom") { mojom("search_mojom") {
sources = [ sources = [ "search.mojom" ]
"search.mojom",
]
public_deps = [ public_deps = [
"//mojo/public/mojom/base", "//mojo/public/mojom/base",
...@@ -798,32 +790,20 @@ if (enable_print_preview && !is_chromeos) { ...@@ -798,32 +790,20 @@ if (enable_print_preview && !is_chromeos) {
"cloud_print.mojom", "cloud_print.mojom",
"service_process.mojom", "service_process.mojom",
] ]
public_deps = [ public_deps = [ "//mojo/public/mojom/base" ]
"//mojo/public/mojom/base",
]
} }
} }
mojom("supervised_user_commands_mojom") { mojom("supervised_user_commands_mojom") {
sources = [ sources = [ "supervised_user_commands.mojom" ]
"supervised_user_commands.mojom",
]
} }
mojom("available_offline_content_mojom") { mojom("available_offline_content_mojom") {
sources = [ sources = [ "available_offline_content.mojom" ]
"available_offline_content.mojom", public_deps = [ "//url/mojom:url_mojom_gurl" ]
]
public_deps = [
"//url/mojom:url_mojom_gurl",
]
} }
mojom("offline_page_auto_fetcher_mojom") { mojom("offline_page_auto_fetcher_mojom") {
sources = [ sources = [ "offline_page_auto_fetcher.mojom" ]
"offline_page_auto_fetcher.mojom", public_deps = [ "//url/mojom:url_mojom_gurl" ]
]
public_deps = [
"//url/mojom:url_mojom_gurl",
]
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment