diff options
author | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-12 01:02:31 +0000 |
---|---|---|
committer | thakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-08-12 01:04:12 +0000 |
commit | eebba06c6b24ba218a261a009bd5e13c97cf3d6c (patch) | |
tree | 2b2dc3bccf344d5a7f556270a0308da6621551db /breakpad | |
parent | 1540c40b57bcb69c1ed255a566cfdc319c42ac6e (diff) | |
download | chromium_src-eebba06c6b24ba218a261a009bd5e13c97cf3d6c.zip chromium_src-eebba06c6b24ba218a261a009bd5e13c97cf3d6c.tar.gz chromium_src-eebba06c6b24ba218a261a009bd5e13c97cf3d6c.tar.bz2 |
Don't use -mimplicit-it=always in breakpad.gyp.
breakpad_client builds fine for daisy with and without this flag,
so might as well not pass it, for consistency with 288830.
BUG=none
NOTRY=true
Review URL: https://codereview.chromium.org/458743006
Cr-Commit-Position: refs/heads/master@{#288856}
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@288856 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'breakpad')
-rw-r--r-- | breakpad/BUILD.gn | 4 | ||||
-rw-r--r-- | breakpad/breakpad.gyp | 4 |
2 files changed, 0 insertions, 8 deletions
diff --git a/breakpad/BUILD.gn b/breakpad/BUILD.gn index 0ae5a2b..6b1e779 100644 --- a/breakpad/BUILD.gn +++ b/breakpad/BUILD.gn @@ -437,10 +437,6 @@ if (is_linux && current_toolchain == host_toolchain) { configs += [ "//build/config/compiler:no_chromium_code" ] direct_dependent_configs = [ ":client_config" ] - # Android NDK toolchain doesn't support -mimplicit-it=always - if (cpu_arch == "arm" && !is_android) { - cflags = [ "-Wa,-mimplicit-it=always" ] - } if (cpu_arch == "arm" && is_chromeos) { # Avoid running out of registers in # linux_syscall_support.h:sys_clone()'s inline assembly. diff --git a/breakpad/breakpad.gyp b/breakpad/breakpad.gyp index 18a4355..ac6a122 100644 --- a/breakpad/breakpad.gyp +++ b/breakpad/breakpad.gyp @@ -501,10 +501,6 @@ ], 'conditions': [ - # Android NDK toolchain doesn't support -mimplicit-it=always - ['target_arch=="arm" and OS!="android"', { - 'cflags': ['-Wa,-mimplicit-it=always'], - }], ['target_arch=="arm" and chromeos==1', { # Avoid running out of registers in # linux_syscall_support.h:sys_clone()'s inline assembly. |