Commit 5da918b4 authored by Frank Barchard's avatar Frank Barchard

Enable NEON for unittests on ios 64 bit.

TBR=kjellander@chromium.org
BUG=libyuv:637, chromium:646279

Review URL: https://codereview.chromium.org/2340933005 .
parent 6ad3aa6a
...@@ -182,9 +182,6 @@ if (libyuv_include_tests) { ...@@ -182,9 +182,6 @@ if (libyuv_include_tests) {
if (is_linux) { if (is_linux) {
cflags = [ "-fexceptions" ] cflags = [ "-fexceptions" ]
} }
if (is_ios && target_cpu=="arm64") {
defines += [ "LIBYUV_DISABLE_NEON" ]
}
if (is_ios) { if (is_ios) {
configs -= [ "//build/config/compiler:default_symbols" ] configs -= [ "//build/config/compiler:default_symbols" ]
configs += [ "//build/config/compiler:symbols" ] configs += [ "//build/config/compiler:symbols" ]
...@@ -246,10 +243,6 @@ if (libyuv_include_tests) { ...@@ -246,10 +243,6 @@ if (libyuv_include_tests) {
] ]
deps = [ ":libyuv" ] deps = [ ":libyuv" ]
if (is_ios && target_cpu=="arm64") {
# TODO(fbarchard): Enable Neon. See https://crbug.com/646279
defines = [ "LIBYUV_DISABLE_NEON" ]
}
if (!is_ios && !libyuv_disable_jpeg) { if (!is_ios && !libyuv_disable_jpeg) {
defines = [ "HAVE_JPEG" ] defines = [ "HAVE_JPEG" ]
} }
......
Name: libyuv Name: libyuv
URL: http://code.google.com/p/libyuv/ URL: http://code.google.com/p/libyuv/
Version: 1618 Version: 1619
License: BSD License: BSD
License File: LICENSE License File: LICENSE
......
...@@ -11,6 +11,6 @@ ...@@ -11,6 +11,6 @@
#ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT #ifndef INCLUDE_LIBYUV_VERSION_H_ // NOLINT
#define INCLUDE_LIBYUV_VERSION_H_ #define INCLUDE_LIBYUV_VERSION_H_
#define LIBYUV_VERSION 1618 #define LIBYUV_VERSION 1619
#endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT #endif // INCLUDE_LIBYUV_VERSION_H_ NOLINT
...@@ -52,11 +52,6 @@ ...@@ -52,11 +52,6 @@
'-fexceptions', '-fexceptions',
], ],
}], }],
[ 'OS == "ios" and target_subarch == 64', {
'defines': [
'LIBYUV_DISABLE_NEON'
],
}],
[ 'OS == "ios"', { [ 'OS == "ios"', {
'xcode_settings': { 'xcode_settings': {
'DEBUGGING_SYMBOLS': 'YES', 'DEBUGGING_SYMBOLS': 'YES',
...@@ -151,12 +146,6 @@ ...@@ -151,12 +146,6 @@
'libyuv.gyp:libyuv', 'libyuv.gyp:libyuv',
], ],
'conditions': [ 'conditions': [
[ 'OS == "ios" and target_subarch == 64', {
'defines': [
'LIBYUV_DISABLE_NEON'
],
}],
[ 'OS != "ios" and libyuv_disable_jpeg != 1', { [ 'OS != "ios" and libyuv_disable_jpeg != 1', {
'defines': [ 'defines': [
'HAVE_JPEG', 'HAVE_JPEG',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment