Commit 65b351ad authored by Nico Weber's avatar Nico Weber Committed by Commit Bot

Reformat all gn files in /ios.

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

Bug: 1041419
Change-Id: Ic52468b78c9fc7623519e87af64397452228d52b
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1997973
Auto-Submit: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarPeter Lee <pkl@chromium.org>
Commit-Queue: Nico Weber <thakis@chromium.org>
Cr-Commit-Position: refs/heads/master@{#732441}
parent e8845e53
...@@ -7,9 +7,7 @@ import("//testing/test.gni") ...@@ -7,9 +7,7 @@ import("//testing/test.gni")
group("all_tests") { group("all_tests") {
testonly = true testonly = true
deps = [ deps = [ ":ios_testing_unittests" ]
":ios_testing_unittests",
]
} }
source_set("verify_custom_webkit") { source_set("verify_custom_webkit") {
...@@ -19,9 +17,7 @@ source_set("verify_custom_webkit") { ...@@ -19,9 +17,7 @@ source_set("verify_custom_webkit") {
"verify_custom_webkit.h", "verify_custom_webkit.h",
"verify_custom_webkit.mm", "verify_custom_webkit.mm",
] ]
deps = [ deps = [ "//base" ]
"//base",
]
} }
source_set("hardware_keyboarr_support") { source_set("hardware_keyboarr_support") {
...@@ -31,9 +27,7 @@ source_set("hardware_keyboarr_support") { ...@@ -31,9 +27,7 @@ source_set("hardware_keyboarr_support") {
"hardware_keyboard_util.h", "hardware_keyboard_util.h",
"hardware_keyboard_util.mm", "hardware_keyboard_util.mm",
] ]
deps = [ deps = [ "//base/test:test_support" ]
"//base/test:test_support",
]
} }
source_set("block_swizzler") { source_set("block_swizzler") {
...@@ -45,9 +39,7 @@ source_set("block_swizzler") { ...@@ -45,9 +39,7 @@ source_set("block_swizzler") {
"scoped_method_swizzler.h", "scoped_method_swizzler.h",
"scoped_method_swizzler.mm", "scoped_method_swizzler.mm",
] ]
deps = [ deps = [ "//base" ]
"//base",
]
} }
source_set("nserror_support") { source_set("nserror_support") {
...@@ -63,9 +55,7 @@ source_set("embedded_test_server_support") { ...@@ -63,9 +55,7 @@ source_set("embedded_test_server_support") {
configs += [ "//build/config/compiler:enable_arc" ] configs += [ "//build/config/compiler:enable_arc" ]
testonly = true testonly = true
deps = [ deps = [ "//net:test_support" ]
"//net:test_support",
]
sources = [ sources = [
"embedded_test_server_handlers.cc", "embedded_test_server_handlers.cc",
"embedded_test_server_handlers.h", "embedded_test_server_handlers.h",
...@@ -76,13 +66,9 @@ source_set("ocmock_support") { ...@@ -76,13 +66,9 @@ source_set("ocmock_support") {
configs += [ "//build/config/compiler:enable_arc" ] configs += [ "//build/config/compiler:enable_arc" ]
testonly = true testonly = true
deps = [ deps = [ "//base" ]
"//base",
]
public_deps = [ public_deps = [ "//third_party/ocmock" ]
"//third_party/ocmock",
]
sources = [ sources = [
"ocmock_complex_type_helper.h", "ocmock_complex_type_helper.h",
...@@ -157,8 +143,6 @@ bundle_data("http_server_bundle_data") { ...@@ -157,8 +143,6 @@ bundle_data("http_server_bundle_data") {
"data/http_server_files/window_open.html", "data/http_server_files/window_open.html",
"data/http_server_files/window_proxy.html", "data/http_server_files/window_proxy.html",
] ]
outputs = [ outputs = [ "{{bundle_resources_dir}}/" +
"{{bundle_resources_dir}}/" + "{{source_root_relative_dir}}/{{source_file_part}}" ]
"{{source_root_relative_dir}}/{{source_file_part}}",
]
} }
...@@ -7,8 +7,6 @@ source_set("startup") { ...@@ -7,8 +7,6 @@ source_set("startup") {
"startupLoggers.h", "startupLoggers.h",
"startupLoggers.mm", "startupLoggers.mm",
] ]
deps = [ deps = [ "//base" ]
"//base",
]
configs += [ "//build/config/compiler:enable_arc" ] configs += [ "//build/config/compiler:enable_arc" ]
} }
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