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

Side by Side 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, 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 unified diff | Download patch
« no previous file with comments | « import_from_android.sh ('k') | openssl.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'openssl', 8 'target_name': 'openssl',
9 'type': 'static_library', 9 'type': 'static_library',
10 'includes': [ 10 'includes': [
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 # this at runtime with the SSL_CERT_DIR environment variable. 43 # this at runtime with the SSL_CERT_DIR environment variable.
44 'OPENSSLDIR="/etc/ssl"', 44 'OPENSSLDIR="/etc/ssl"',
45 ], 45 ],
46 }], 46 }],
47 ['target_arch == "arm"', { 47 ['target_arch == "arm"', {
48 'sources': [ '<@(openssl_arm_sources)' ], 48 'sources': [ '<@(openssl_arm_sources)' ],
49 'sources!': [ '<@(openssl_arm_source_excludes)' ], 49 'sources!': [ '<@(openssl_arm_source_excludes)' ],
50 'defines': [ '<@(openssl_arm_defines)' ], 50 'defines': [ '<@(openssl_arm_defines)' ],
51 'defines!': [ 'OPENSSL_NO_ASM' ], 51 'defines!': [ 'OPENSSL_NO_ASM' ],
52 }], 52 }],
53 ['target_arch == "mipsel"', {
54 'sources': [ '<@(openssl_mips_sources)' ],
55 'sources!': [ '<@(openssl_mips_source_excludes)' ],
56 'defines': [ '<@(openssl_mips_defines)' ],
57 'defines!': [ 'OPENSSL_NO_ASM' ],
58 }],
53 ['target_arch == "ia32"', { 59 ['target_arch == "ia32"', {
54 'sources': [ '<@(openssl_x86_sources)' ], 60 'sources': [ '<@(openssl_x86_sources)' ],
55 'sources!': [ '<@(openssl_x86_source_excludes)' ], 61 'sources!': [ '<@(openssl_x86_source_excludes)' ],
56 'defines': [ '<@(openssl_x86_defines)' ], 62 'defines': [ '<@(openssl_x86_defines)' ],
57 'defines!': [ 'OPENSSL_NO_ASM' ], 63 'defines!': [ 'OPENSSL_NO_ASM' ],
58 }], 64 }],
59 ['target_arch == "x64"', { 65 ['target_arch == "x64"', {
60 'sources': [ '<@(openssl_x86_64_sources)' ], 66 'sources': [ '<@(openssl_x86_64_sources)' ],
61 'sources!': [ '<@(openssl_x86_64_source_excludes)' ], 67 'sources!': [ '<@(openssl_x86_64_source_excludes)' ],
62 'defines': [ '<@(openssl_x86_64_defines)' ], 68 'defines': [ '<@(openssl_x86_64_defines)' ],
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 }, 103 },
98 }, 104 },
99 ], 105 ],
100 } 106 }
101 107
102 # Local Variables: 108 # Local Variables:
103 # tab-width:2 109 # tab-width:2
104 # indent-tabs-mode:nil 110 # indent-tabs-mode:nil
105 # End: 111 # End:
106 # vim: set expandtab tabstop=2 shiftwidth=2: 112 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« 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