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

Unified Diff: Source/build/features.gypi

Issue 604373003: [WIP] Supporting arm_neon_optional flag for blink platform. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 2 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 | Source/platform/Logging.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/build/features.gypi
diff --git a/Source/build/features.gypi b/Source/build/features.gypi
index 237be2273d2257d40734c705171fa2bff04604db..7e3da75677c555ae2dc279eaf6f15ec3257a4481 100644
--- a/Source/build/features.gypi
+++ b/Source/build/features.gypi
@@ -47,6 +47,16 @@
'blink_logging_always_on%': 0,
},
'conditions': [
+ ['arm_neon == 1', {
+ 'feature_defines': [
+ 'WTF_CPU_ARM_NEON',
+ ],
+ }],
+ ['arm_neon_optional == 1 and (OS=="linux" or OS=="android")', {
+ 'feature_defines': [
+ 'WTF_CPU_ARM_NEON_OPTIONAL',
+ ],
+ }],
['use_concatenated_impulse_responses==1', {
# Use concatenated HRTF impulse responses
'feature_defines': ['WTF_USE_CONCATENATED_IMPULSE_RESPONSES=1'],
« no previous file with comments | « no previous file | Source/platform/Logging.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698