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

Reformat all gn files in /ios/chrome/browser/web.

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

Bug: 1041419
Change-Id: I103e9513ecf879d73f756ddad08b0ef34bcf6d7a
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1998427
Auto-Submit: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarEugene But <eugenebut@chromium.org>
Commit-Queue: Nico Weber <thakis@chromium.org>
Cr-Commit-Position: refs/heads/master@{#731547}
parent 53e1fb1d
...@@ -56,9 +56,7 @@ source_set("web") { ...@@ -56,9 +56,7 @@ source_set("web") {
"//ui/base", "//ui/base",
"//url", "//url",
] ]
public_deps = [ public_deps = [ ":tab_id_tab_helper" ]
":tab_id_tab_helper",
]
} }
source_set("page_placeholder") { source_set("page_placeholder") {
...@@ -182,27 +180,19 @@ js_compile_bundle("chrome_bundle_main_frame") { ...@@ -182,27 +180,19 @@ js_compile_bundle("chrome_bundle_main_frame") {
} }
js_compile_checked("payment_request") { js_compile_checked("payment_request") {
sources = [ sources = [ "resources/payment_request.js" ]
"resources/payment_request.js",
]
} }
js_compile_checked("credential_manager") { js_compile_checked("credential_manager") {
sources = [ sources = [ "resources/credential_manager.js" ]
"resources/credential_manager.js",
]
} }
js_compile_checked("accessibility") { js_compile_checked("accessibility") {
sources = [ sources = [ "resources/accessibility.js" ]
"resources/accessibility.js",
]
} }
js_compile_checked("image_fetch") { js_compile_checked("image_fetch") {
sources = [ sources = [ "resources/image_fetch.js" ]
"resources/image_fetch.js",
]
} }
source_set("java_script_console") { source_set("java_script_console") {
...@@ -273,9 +263,7 @@ source_set("web_internal") { ...@@ -273,9 +263,7 @@ source_set("web_internal") {
"//ui/gfx", "//ui/gfx",
"//url", "//url",
] ]
public_deps = [ public_deps = [ ":java_script_console" ]
":java_script_console",
]
libs = [ libs = [
"UIKit.framework", "UIKit.framework",
"Foundation.framework", "Foundation.framework",
...@@ -421,9 +409,7 @@ source_set("eg_test_support+eg2") { ...@@ -421,9 +409,7 @@ source_set("eg_test_support+eg2") {
] ]
testonly = true testonly = true
sources = [ sources = [ "progress_indicator_app_interface.h" ]
"progress_indicator_app_interface.h",
]
deps = [ deps = [
"//ios/chrome/test/earl_grey:eg_test_support+eg2", "//ios/chrome/test/earl_grey:eg_test_support+eg2",
...@@ -507,9 +493,7 @@ source_set("eg2_tests") { ...@@ -507,9 +493,7 @@ source_set("eg2_tests") {
source_set("perf_tests") { source_set("perf_tests") {
configs += [ "//build/config/compiler:enable_arc" ] configs += [ "//build/config/compiler:enable_arc" ]
testonly = true testonly = true
sources = [ sources = [ "early_page_script_perftest.mm" ]
"early_page_script_perftest.mm",
]
deps = [ deps = [
"//base", "//base",
"//base/test:test_support", "//base/test:test_support",
...@@ -527,7 +511,5 @@ source_set("feature_flags") { ...@@ -527,7 +511,5 @@ source_set("feature_flags") {
"features.cc", "features.cc",
"features.h", "features.h",
] ]
deps = [ deps = [ "//base" ]
"//base",
]
} }
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