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

Unified Diff: openssl.gyp

Issue 14371012: [MIPS] Add build support for MIPS in openssl.gyp (Closed) Base URL: https://chromium.googlesource.com/chromium/deps/openssl.git@master
Patch Set: [MIPS] Add build support for MIPS in openssl.gyp Created 7 years, 8 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 | « import_from_android.sh ('k') | openssl.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: openssl.gyp
===================================================================
--- openssl.gyp (revision 197043)
+++ openssl.gyp (working copy)
@@ -50,6 +50,12 @@
'defines': [ '<@(openssl_arm_defines)' ],
'defines!': [ 'OPENSSL_NO_ASM' ],
}],
+ ['target_arch == "mipsel"', {
+ 'sources': [ '<@(openssl_mips_sources)' ],
+ 'sources!': [ '<@(openssl_mips_source_excludes)' ],
+ 'defines': [ '<@(openssl_mips_defines)' ],
+ 'defines!': [ 'OPENSSL_NO_ASM' ],
+ }],
['target_arch == "ia32"', {
'sources': [ '<@(openssl_x86_sources)' ],
'sources!': [ '<@(openssl_x86_source_excludes)' ],
« no previous file with comments | « import_from_android.sh ('k') | openssl.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698