commit | 42f9890d937d0a06e145ab141167b82a1cc7f859 | [log] [tgz] |
---|---|---|
author | David Dorwin <[email protected]> | Tue Apr 05 15:55:56 2022 |
committer | Chromium LUCI CQ <[email protected]> | Tue Apr 05 15:55:56 2022 |
tree | 3f5626dc378233d1a2697ab4159bbda03a6278dd | |
parent | f9b257f90b60cf58dd0c5d72cc3c64e5b838065c [diff] [blame] |
[lacros] Remove superfluous parentheses around is_linux || is_chromeos_lacros In a list of ORs, these do not need parentheses. Bug: 1052397 Change-Id: I69c794ee17183cf713b14de0aac5d3a38732148e Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/3563859 Reviewed-by: Vignesh Shenvi <[email protected]> Auto-Submit: David Dorwin <[email protected]> Reviewed-by: Nico Weber <[email protected]> Owners-Override: Nico Weber <[email protected]> Commit-Queue: Nico Weber <[email protected]> Cr-Commit-Position: refs/heads/main@{#988988}
diff --git a/BUILD.gn b/BUILD.gn index 73aefc2..874db18 100644 --- a/BUILD.gn +++ b/BUILD.gn
@@ -615,7 +615,7 @@ deps += [ "//chrome/test/chromedriver:chromedriver($host_toolchain)" ] } - if (is_android || (is_linux || is_chromeos_lacros)) { + if (is_android || is_linux || is_chromeos_lacros) { deps += [ "//components/network_hints/browser", "//content/public/app",