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

Unified Diff: gyp/common_variables.gypi

Issue 304903003: MIPS: modified gypi files to support build (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: MIPS: modified gypi files to support build Created 6 years, 7 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 | « gyp/common_conditions.gypi ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gyp/common_variables.gypi
diff --git a/gyp/common_variables.gypi b/gyp/common_variables.gypi
index c8b069ce685345a075b37995c6de40b4eda59085..70bf599967583a7d5dca1db0d71823d1d5a21f9b 100644
--- a/gyp/common_variables.gypi
+++ b/gyp/common_variables.gypi
@@ -97,6 +97,10 @@
'arm_version%': 7,
'arm_neon%': 0, # neon asm files known not to work with the ios build
}],
+ [ 'skia_os == "linux"' and 'skia_arch_type == "mips"', {
djsollen 2014/06/02 12:39:10 If you're always going to assign them to 0 then ju
+ 'mips_dsp%': 0,
+ 'mips_dspr2%': 0,
+ }],
[ 'skia_os in ["android", "nacl"] and not skia_android_framework',
# skia_freetype_static - on OS variants that normally would
# dynamically link the system FreeType library, don't do
@@ -189,6 +193,10 @@
'arm_version%': '<(arm_version)',
'arm_neon%': '<(arm_neon)',
'arm_neon_optional%': 0,
+ 'mips_dsp%': '<(mips_dsp)',
djsollen 2014/06/02 12:39:10 this can just be... 'mips_dsp%': 0, 'mips_dspr2%'
+ 'mips_dspr2%': '<(mips_dspr2)',
+ 'mips_dsp_optional%': 0,
+ 'mips_dspr2_optional%': 0,
'skia_os%': '<(skia_os)',
'os_posix%': '<(os_posix)',
« no previous file with comments | « gyp/common_conditions.gypi ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698