aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/dng_sdk
diff options
context:
space:
mode:
authorGravatar Mike Klein <mtklein@chromium.org>2017-12-05 08:50:20 -0500
committerGravatar Mike Klein <mtklein@chromium.org>2017-12-05 17:19:45 +0000
commitf32b27d2e4872966a360fb296acccae3e186a4a5 (patch)
treeca13fabaf9203ebb462aacf8dc00539f8d76b2af /third_party/dng_sdk
parent1447177005fcbac83acd501766a46c751a49ae73 (diff)
remove mips support and bots
The NDK has deprecated mips and mips64: https://developer.android.com/ndk/guides/abis.html Might as well clean this up now while I remember. Change-Id: Ie4b2334c75208082067cc16fe355d0349c7e0904 Reviewed-on: https://skia-review.googlesource.com/80560 Reviewed-by: Derek Sollenberger <djsollen@google.com>
Diffstat (limited to 'third_party/dng_sdk')
-rw-r--r--third_party/dng_sdk/BUILD.gn2
1 files changed, 1 insertions, 1 deletions
diff --git a/third_party/dng_sdk/BUILD.gn b/third_party/dng_sdk/BUILD.gn
index 07b19905a8..4bd580a8ac 100644
--- a/third_party/dng_sdk/BUILD.gn
+++ b/third_party/dng_sdk/BUILD.gn
@@ -178,7 +178,7 @@ third_party("dng_sdk") {
"../externals/dng_sdk/source/dng_xy_coord.h",
]
- if (current_cpu == "x86" || current_cpu == "mipsel" || current_cpu == "arm") {
+ if (current_cpu == "x86" || current_cpu == "arm") {
# DNG SDK uses __builtin_smulll_overflow() to detect 64x64 bit multiply overflow.
# On some platforms, the compiler implements this with __mulodi4().
# I can't quite figure out how to link that here, so instead here's a shim for