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")
group("all_tests") {
testonly = true
deps = [
":ios_testing_unittests",
]
deps = [ ":ios_testing_unittests" ]
}
source_set("verify_custom_webkit") {
......@@ -19,9 +17,7 @@ source_set("verify_custom_webkit") {
"verify_custom_webkit.h",
"verify_custom_webkit.mm",
]
deps = [
"//base",
]
deps = [ "//base" ]
}
source_set("hardware_keyboarr_support") {
......@@ -31,9 +27,7 @@ source_set("hardware_keyboarr_support") {
"hardware_keyboard_util.h",
"hardware_keyboard_util.mm",
]
deps = [
"//base/test:test_support",
]
deps = [ "//base/test:test_support" ]
}
source_set("block_swizzler") {
......@@ -45,9 +39,7 @@ source_set("block_swizzler") {
"scoped_method_swizzler.h",
"scoped_method_swizzler.mm",
]
deps = [
"//base",
]
deps = [ "//base" ]
}
source_set("nserror_support") {
......@@ -63,9 +55,7 @@ source_set("embedded_test_server_support") {
configs += [ "//build/config/compiler:enable_arc" ]
testonly = true
deps = [
"//net:test_support",
]
deps = [ "//net:test_support" ]
sources = [
"embedded_test_server_handlers.cc",
"embedded_test_server_handlers.h",
......@@ -76,13 +66,9 @@ source_set("ocmock_support") {
configs += [ "//build/config/compiler:enable_arc" ]
testonly = true
deps = [
"//base",
]
deps = [ "//base" ]
public_deps = [
"//third_party/ocmock",
]
public_deps = [ "//third_party/ocmock" ]
sources = [
"ocmock_complex_type_helper.h",
......@@ -157,8 +143,6 @@ bundle_data("http_server_bundle_data") {
"data/http_server_files/window_open.html",
"data/http_server_files/window_proxy.html",
]
outputs = [
"{{bundle_resources_dir}}/" +
"{{source_root_relative_dir}}/{{source_file_part}}",
]
outputs = [ "{{bundle_resources_dir}}/" +
"{{source_root_relative_dir}}/{{source_file_part}}" ]
}
......@@ -7,8 +7,6 @@ source_set("startup") {
"startupLoggers.h",
"startupLoggers.mm",
]
deps = [
"//base",
]
deps = [ "//base" ]
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