Reformat all gn files in /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=thomasanderson@chromium.org Bug: 1041419 Change-Id: I401e2a14a420a1c679d936641a79aeaf4aa29928 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1998074 Auto-Submit: Nico Weber <thakis@chromium.org> Reviewed-by: Thomas Anderson <thomasanderson@chromium.org> Commit-Queue: Thomas Anderson <thomasanderson@chromium.org> Cr-Commit-Position: refs/heads/master@{#730764}
This commit is contained in:
41
BUILD.gn
41
BUILD.gn
@ -985,9 +985,7 @@ if (!is_ios) {
|
||||
# third_party/blink/tools/run_web_tests.py
|
||||
group("run_web_tests") {
|
||||
testonly = true
|
||||
deps = [
|
||||
":blink_web_tests",
|
||||
]
|
||||
deps = [ ":blink_web_tests" ]
|
||||
}
|
||||
|
||||
if (!is_chromeos && !is_ios && !is_fuchsia && !is_android) {
|
||||
@ -1018,23 +1016,15 @@ if (!is_ios) {
|
||||
"//chrome:chrome",
|
||||
"//chrome/test/chromedriver",
|
||||
]
|
||||
deps = [
|
||||
"//third_party/blink/tools:wpt_tests_isolate",
|
||||
]
|
||||
deps = [ "//third_party/blink/tools:wpt_tests_isolate" ]
|
||||
}
|
||||
}
|
||||
|
||||
group("devtools_web_tests") {
|
||||
testonly = true
|
||||
deps = [
|
||||
":blink_web_tests",
|
||||
]
|
||||
data_deps = [
|
||||
":blink_web_tests",
|
||||
]
|
||||
data = [
|
||||
"//third_party/devtools-frontend/src/test/webtests/",
|
||||
]
|
||||
deps = [ ":blink_web_tests" ]
|
||||
data_deps = [ ":blink_web_tests" ]
|
||||
data = [ "//third_party/devtools-frontend/src/test/webtests/" ]
|
||||
}
|
||||
|
||||
# https://www.chromium.org/developers/testing/webkit-layout-tests
|
||||
@ -1149,33 +1139,24 @@ if (!is_ios) {
|
||||
copy("layout_test_data_mojo_bindings") {
|
||||
testonly = true
|
||||
|
||||
sources = [
|
||||
"$root_gen_dir/mojo/public/js/mojo_bindings.js",
|
||||
]
|
||||
sources = [ "$root_gen_dir/mojo/public/js/mojo_bindings.js" ]
|
||||
|
||||
outputs = [
|
||||
"$root_gen_dir/layout_test_data/mojo/public/js/mojo_bindings.js",
|
||||
]
|
||||
outputs =
|
||||
[ "$root_gen_dir/layout_test_data/mojo/public/js/mojo_bindings.js" ]
|
||||
|
||||
deps = [
|
||||
"//mojo/public/js:bindings",
|
||||
]
|
||||
deps = [ "//mojo/public/js:bindings" ]
|
||||
}
|
||||
|
||||
copy("layout_test_data_mojo_bindings_lite") {
|
||||
testonly = true
|
||||
|
||||
sources = [
|
||||
"$root_gen_dir/mojo/public/js/mojo_bindings_lite.js",
|
||||
]
|
||||
sources = [ "$root_gen_dir/mojo/public/js/mojo_bindings_lite.js" ]
|
||||
|
||||
outputs = [
|
||||
"$root_gen_dir/layout_test_data/mojo/public/js/mojo_bindings_lite.js",
|
||||
]
|
||||
|
||||
deps = [
|
||||
"//mojo/public/js:bindings_lite",
|
||||
]
|
||||
deps = [ "//mojo/public/js:bindings_lite" ]
|
||||
}
|
||||
|
||||
group("blink_python_tests") {
|
||||
|
Reference in New Issue
Block a user