| Index: chrome/test/BUILD.gn
|
| diff --git a/chrome/test/BUILD.gn b/chrome/test/BUILD.gn
|
| index c26670927af52fb9d82071a15a4a5556cc7ce16a..91ca1878563911a4255cb1fd4801fd14e114e1b7 100644
|
| --- a/chrome/test/BUILD.gn
|
| +++ b/chrome/test/BUILD.gn
|
| @@ -1515,7 +1515,7 @@ if (!is_android && (!is_win || link_chrome_on_windows)) {
|
| # static for simplicity.
|
| deps += [ "//third_party/cld_2:cld2_static" ]
|
| }
|
| - if (is_desktop_linux && cpu_arch == "x64") {
|
| + if (is_desktop_linux && current_cpu == "x64") {
|
| # Only add this test for 64 bit builds because otherwise we need the 32
|
| # bit library on 64 bit systems when running this test.
|
| sources +=
|
| @@ -1536,7 +1536,7 @@ if (!is_android && (!is_win || link_chrome_on_windows)) {
|
| "//ui/aura:test_support",
|
| ]
|
| }
|
| - if (is_linux && is_chrome_branded && cpu_arch == "x86") {
|
| + if (is_linux && is_chrome_branded && current_cpu == "x86") {
|
| ldflags = [ "-Wl,--strip-debug" ]
|
| }
|
| if (is_mac) {
|
|
|