Commit 64f12b6e authored by Nico Weber's avatar Nico Weber Committed by Commit Bot

Reformat all gn files in /chrome/android/chrome_public_apk_tmpl.gni.

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

Bug: 1041419
Change-Id: I3f69b601bd3cc3d55b55d00245043174bb3c68ac
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1997763
Auto-Submit: Nico Weber <thakis@chromium.org>
Reviewed-by: default avatarEgor Pasko <pasko@chromium.org>
Commit-Queue: Egor Pasko <pasko@chromium.org>
Cr-Commit-Position: refs/heads/master@{#731702}
parent 24bc4121
...@@ -113,13 +113,9 @@ template("chrome_public_common_apk_or_module_tmpl") { ...@@ -113,13 +113,9 @@ template("chrome_public_common_apk_or_module_tmpl") {
} }
if (android_64bit_target_cpu) { if (android_64bit_target_cpu) {
deps = [ deps = [ "//chrome/android:lib${library_target}($android_secondary_abi_toolchain)" ]
"//chrome/android:lib${library_target}($android_secondary_abi_toolchain)",
]
} else { } else {
deps = [ deps = [ "//chrome/android:lib${library_target}" ]
"//chrome/android:lib${library_target}",
]
} }
} }
} else if (defined(invoker.shared_library_for_unwind_asset)) { } else if (defined(invoker.shared_library_for_unwind_asset)) {
......
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