Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2670)

Unified Diff: skia/BUILD.gn

Issue 391793002: When NEON disabled, always build ARM memset routines. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | skia/skia_library_opts.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/BUILD.gn
diff --git a/skia/BUILD.gn b/skia/BUILD.gn
index df86f1a04570ce06d87da04391baf70b8b3ff161..3c32f67780e4f670574bd90edd222229137fb40d 100644
--- a/skia/BUILD.gn
+++ b/skia/BUILD.gn
@@ -631,7 +631,7 @@ source_set("skia_opts") {
}
# Non-Neon ARM code.
- if (arm_version < 7 || (!arm_use_neon && arm_optionally_use_neon)) {
+ if (arm_version < 7 || !arm_use_neon) {
sources += [ "//third_party/skia/src/opts/memset.arm.S" ]
}
« no previous file with comments | « no previous file | skia/skia_library_opts.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698