diff options
-rw-r--r-- | build/config/compiler/BUILD.gn | 2 | ||||
-rw-r--r-- | build/toolchain/linux/BUILD.gn | 2 | ||||
-rw-r--r-- | tools/gn/secondary/net/BUILD.gn | 2 |
3 files changed, 2 insertions, 4 deletions
diff --git a/build/config/compiler/BUILD.gn b/build/config/compiler/BUILD.gn index 75c7604..3d03b4b 100644 --- a/build/config/compiler/BUILD.gn +++ b/build/config/compiler/BUILD.gn @@ -54,7 +54,7 @@ config("compiler") { # CPU architecture. if (cpu_arch == "x64") { common_mac_flags += "-arch x86_64" - } else if (cpu_arch == "x32") { + } else if (cpu_arch == "x86") { common_mac_flags += "-arch i386" } diff --git a/build/toolchain/linux/BUILD.gn b/build/toolchain/linux/BUILD.gn index ffb378b..0532d80 100644 --- a/build/toolchain/linux/BUILD.gn +++ b/build/toolchain/linux/BUILD.gn @@ -123,7 +123,7 @@ toolchain("32") { # When invoking this toolchain not as the default one, these args will be # passed to the build. They are ignored when this is the default toolchain. toolchain_args() { - cpu_arch = "x32" + cpu_arch = "x86" } } diff --git a/tools/gn/secondary/net/BUILD.gn b/tools/gn/secondary/net/BUILD.gn index 114da13..da54e04 100644 --- a/tools/gn/secondary/net/BUILD.gn +++ b/tools/gn/secondary/net/BUILD.gn @@ -1116,8 +1116,6 @@ component("net") { sources -= [ "base/network_change_notifier_linux.cc", "base/network_change_notifier_linux.h", - "base/network_change_notifier_netlink_linux.cc", - "base/network_change_notifier_netlink_linux.h", "proxy/proxy_config_service_linux.cc", "proxy/proxy_config_service_linux.h", ] |