diff options
author | dpranke <dpranke@chromium.org> | 2015-02-19 18:55:19 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-02-20 02:56:07 +0000 |
commit | 4327621a322c964a8bc6d1ef5a4534f0f877d63e (patch) | |
tree | eb4397f38579a5d7dcb821a8873e4006187dd450 /breakpad/BUILD.gn | |
parent | 05b60060481868d9d6892f05e25e33e7934d1284 (diff) | |
download | chromium_src-4327621a322c964a8bc6d1ef5a4534f0f877d63e.zip chromium_src-4327621a322c964a8bc6d1ef5a4534f0f877d63e.tar.gz chromium_src-4327621a322c964a8bc6d1ef5a4534f0f877d63e.tar.bz2 |
Update Chomium's build files to work w/ latest GN binaries.
The latest GN binaries rename cpu_arch to current_cpu and/or target_cpu
as appropriate, build_cpu_arch to host_cpu, and os to current_os and target_os as appropriate.
R=brettw@chromium.org
TBR=ddorwin@chromium.org
EXTRA_TRYBOTS=tryserver.chromium.linux:android_chromium_gn_compile_dbg,android_chromium_gn_compile_rel;tryserver.chromium.win:win8_chromium_gn_rel,win8_chromium_gn_dbg;tryserver.chromium.mac:mac_chromium_gn_rel,mac_chromium_gn_dbg
BUG=344767
Review URL: https://codereview.chromium.org/913373002
Cr-Commit-Position: refs/heads/master@{#317223}
Diffstat (limited to 'breakpad/BUILD.gn')
-rw-r--r-- | breakpad/BUILD.gn | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/breakpad/BUILD.gn b/breakpad/BUILD.gn index c928081..66835e2 100644 --- a/breakpad/BUILD.gn +++ b/breakpad/BUILD.gn @@ -511,7 +511,7 @@ if (is_linux || is_android) { configs += [ "//build/config/compiler:no_chromium_code" ] public_configs = [ ":client_config" ] - if (cpu_arch == "arm" && is_chromeos) { + if (current_cpu == "arm" && is_chromeos) { # Avoid running out of registers in # linux_syscall_support.h:sys_clone()'s inline assembly. cflags = [ "-marm" ] @@ -630,7 +630,7 @@ if (is_linux) { include_dirs = [ "src" ] - if (cpu_arch == "mipsel" && is_android) { + if (current_cpu == "mipsel" && is_android) { include_dirs += [ "src/common/android/include" ] } } |