| Index: libvpx.gyp
|
| diff --git a/libvpx.gyp b/libvpx.gyp
|
| index 3a2811c2cfc0b3f2fdda4cc9fc689427a7282364..aad365fa9638d0a81492955dcbad7fc89b23ecc0 100644
|
| --- a/libvpx.gyp
|
| +++ b/libvpx.gyp
|
| @@ -74,7 +74,8 @@
|
| # support for neon and hide it behind Android cpu-features.
|
| 'includes': ['libvpx_srcs_arm_neon_cpu_detect_intrinsics.gypi', ],
|
| }],
|
| - [ '(target_arch != "arm" and target_arch != "armv7") and target_arch != "mipsel"', {
|
| + [ '(target_arch != "arm" and target_arch != "armv7") and \
|
| + (target_arch != "mipsel" and target_arch != "mips64el")', {
|
| 'targets': [
|
| {
|
| # This libvpx target contains both encoder and decoder.
|
| @@ -181,8 +182,8 @@
|
| ],
|
| },
|
| ],
|
| - # 'libvpx' target for mips builds.
|
| - [ 'target_arch=="mipsel" ', {
|
| + # 'libvpx' target for mipsel and mips64el builds.
|
| + [ 'target_arch=="mipsel" or target_arch=="mips64el"', {
|
| 'targets': [
|
| {
|
| # This libvpx target contains both encoder and decoder.
|
|
|