diff options
author | ppi <ppi@chromium.org> | 2014-10-22 09:41:10 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-22 16:41:32 +0000 |
commit | e6319d7f7d5c2fc96c9cb1f5a81ae16bde19f068 (patch) | |
tree | e1616b6f702b6a6486e67e1d7a94aa4f55b7e961 /third_party/android_platform/development | |
parent | 18b0c3bbb6a6a64236dc3bd162f9f77b7d9387a2 (diff) | |
download | chromium_src-e6319d7f7d5c2fc96c9cb1f5a81ae16bde19f068.zip chromium_src-e6319d7f7d5c2fc96c9cb1f5a81ae16bde19f068.tar.gz chromium_src-e6319d7f7d5c2fc96c9cb1f5a81ae16bde19f068.tar.bz2 |
Revert of Roll android_tools and breakpad to the latest. (patchset #5 id:80001 of https://codereview.chromium.org/671633003/)
Reason for revert:
Downstream x64 and mips bots didn't like it.
Original issue's description:
> Roll android_tools and breakpad to the latest.
>
> This picks up in android_tools:
> Updated SDK build tools to 21.0.1 and removed old versions.
> Upgrade NDK to r10c.
>
> And in breakpad:
> Update breakpad to support Android NDK r10c
> Fixing the Mac Inspector build by adding the launch_report dependency to the breakpadUtilities dylib project after it got pulled out from Inspector.mm.
> Refactor .so name detection logic in minidump/linux_dumper.
> The process uptime computation when the Windows out-of-process Crash Generation Server is used is done by subtracting the crashing process creation time from the current time when the crash is generated.
> Linux multiprocess crash reporter: use pipe instead of socketpair in the client.
> Remove workaround for Linux credential-passing bug.
>
> TBR=brettw, danakj
> NOTRY=true
> BUG=424680, 425077, 358831
>
> Committed: https://crrev.com/79bd5f12620f81dd241984d925b87a888e1dc37b
> Cr-Commit-Position: refs/heads/master@{#300671}
TBR=brettw@chromium.org,primiano@chromium.org,rmcilroy@chromium.org,aurimas@chromium.org,danakj@chromium.org,fdegans@chromium.org
NOTREECHECKS=true
NOTRY=true
BUG=424680, 425077, 358831
Review URL: https://codereview.chromium.org/676453002
Cr-Commit-Position: refs/heads/master@{#300688}
Diffstat (limited to 'third_party/android_platform/development')
-rwxr-xr-x | third_party/android_platform/development/scripts/symbol.py | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/third_party/android_platform/development/scripts/symbol.py b/third_party/android_platform/development/scripts/symbol.py index d2a247d..44d0238 100755 --- a/third_party/android_platform/development/scripts/symbol.py +++ b/third_party/android_platform/development/scripts/symbol.py @@ -53,7 +53,7 @@ def ToolPath(tool, toolchain_info=None): # ToolPath looks for the tools in the completely incorrect directory. # This looks in the checked in android_tools. if ARCH == "arm": - toolchain_source = "arm-linux-androideabi-4.9" + toolchain_source = "arm-linux-androideabi-4.6" toolchain_prefix = "arm-linux-androideabi" ndk = "ndk" elif ARCH == "arm64": @@ -61,15 +61,15 @@ def ToolPath(tool, toolchain_info=None): toolchain_prefix = "aarch64-linux-android" ndk = "ndk" elif ARCH == "x86": - toolchain_source = "x86-4.9" - toolchain_prefix = "i686-linux-android" + toolchain_source = "x86-4.6" + toolchain_prefix = "i686-android-linux" ndk = "ndk" elif ARCH == "x86_64": toolchain_source = "x86_64-4.9" toolchain_prefix = "x86_64-linux-android" ndk = "ndk" elif ARCH == "mips": - toolchain_source = "mipsel-linux-android-4.9" + toolchain_source = "mipsel-linux-android-4.6" toolchain_prefix = "mipsel-linux-android" ndk = "ndk" else: @@ -97,24 +97,26 @@ def FindToolchain(): return TOOLCHAIN_INFO ## Known toolchains, newer ones in the front. - gcc_version = "4.9" if ARCH == "arm64": + gcc_version = "4.9" known_toolchains = [ ("aarch64-linux-android-" + gcc_version, "aarch64", "aarch64-linux-android") ] elif ARCH == "arm": + gcc_version = "4.6" known_toolchains = [ - ("arm-linux-androideabi-" + gcc_version, "arm", "arm-linux-androideabi") + ("arm-linux-androideabi-" + gcc_version, "arm", "arm-linux-androideabi"), ] elif ARCH =="x86": known_toolchains = [ - ("x86-" + gcc_version, "x86", "i686-linux-android") + ("i686-android-linux-4.4.3", "x86", "i686-android-linux") ] elif ARCH =="x86_64": known_toolchains = [ - ("x86_64-" + gcc_version, "x86_64", "x86_64-linux-android") + ("x86_64-linux-android-4.9", "x86_64", "x86_64-linux-android") ] elif ARCH == "mips": + gcc_version = "4.6" known_toolchains = [ ("mipsel-linux-android-" + gcc_version, "mips", "mipsel-linux-android") ] |