Skip to content

Commit

Permalink
Remove old style NEON defines now that Skia has been updated
Browse files Browse the repository at this point in the history
BUG=skia:2785

Review URL: https://codereview.chromium.org/435963002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@287336 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
djsollen@google.com committed Aug 4, 2014
1 parent 4d1293d commit 576f60d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions skia/BUILD.gn
Original file line number Diff line number Diff line change
Expand Up @@ -180,10 +180,10 @@ config("skia_library_config") {

if (cpu_arch == "arm") {
if (arm_use_neon) {
defines += [ "SK_ARM_HAS_NEON", "__ARM_HAVE_NEON" ]
defines += [ "SK_ARM_HAS_NEON" ]
}
if (arm_optionally_use_neon) {
defines += [ "SK_ARM_HAS_OPTIONAL_NEON", "__ARM_HAVE_OPTIONAL_NEON_SUPPORT" ]
defines += [ "SK_ARM_HAS_OPTIONAL_NEON" ]
}
}

Expand Down
2 changes: 0 additions & 2 deletions skia/skia_common.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -112,13 +112,11 @@
[ 'target_arch == "arm" and arm_version >= 7 and arm_neon == 1', {
'defines': [
'SK_ARM_HAS_NEON',
'__ARM_HAVE_NEON',
],
}],
[ 'target_arch == "arm" and arm_version >= 7 and arm_neon_optional == 1', {
'defines': [
'SK_ARM_HAS_OPTIONAL_NEON',
'__ARM_HAVE_OPTIONAL_NEON_SUPPORT',
],
}],
],
Expand Down

0 comments on commit 576f60d

Please sign in to comment.