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

Side by Side Diff: nss.gyp

Issue 12210134: Define _AMD64_, MP_CHAR_STORE_SLOW, and MP_IS_LITTLE_ENDIAN (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Created 7 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | 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 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['OS=="ios"', { 8 ['OS=="ios"', {
9 'exclude_nss_root_certs%': 0, 9 'exclude_nss_root_certs%': 0,
10 'exclude_nss_libpkix%': 0, 10 'exclude_nss_libpkix%': 0,
(...skipping 1118 matching lines...) Expand 10 before | Expand all | Expand 10 after
1129 'MP_ASSEMBLY_DIV_2DX1D', 1129 'MP_ASSEMBLY_DIV_2DX1D',
1130 'MP_USE_UINT_DIGIT', 1130 'MP_USE_UINT_DIGIT',
1131 'MP_NO_MP_WORD', 1131 'MP_NO_MP_WORD',
1132 ], 1132 ],
1133 }], 1133 }],
1134 ['target_arch=="x64"', { 1134 ['target_arch=="x64"', {
1135 'defines': [ 1135 'defines': [
1136 'NSS_USE_64', 1136 'NSS_USE_64',
1137 'NSS_X86_OR_X64', 1137 'NSS_X86_OR_X64',
1138 'NSS_X64', 1138 'NSS_X64',
1139 '_AMD64_',
1140 'MP_CHAR_STORE_SLOW',
1141 'MP_IS_LITTLE_ENDIAN',
1139 'WIN64', 1142 'WIN64',
1140 ], 1143 ],
1141 'sources!': [ 1144 'sources!': [
1142 'mozilla/security/nss/lib/freebl/mpi/mpi_amd64.c', 1145 'mozilla/security/nss/lib/freebl/mpi/mpi_amd64.c',
1143 'mozilla/security/nss/lib/freebl/mpi/mpi_x86_asm.c', 1146 'mozilla/security/nss/lib/freebl/mpi/mpi_x86_asm.c',
1144 ], 1147 ],
1145 }], 1148 }],
1146 ], 1149 ],
1147 }, { # else: OS!="win" 1150 }, { # else: OS!="win"
1148 'sources!': [ 1151 'sources!': [
(...skipping 21 matching lines...) Expand all
1170 '-Wno-incompatible-pointer-types', 1173 '-Wno-incompatible-pointer-types',
1171 '-Wno-logical-op-parentheses', 1174 '-Wno-logical-op-parentheses',
1172 '-Wno-switch', 1175 '-Wno-switch',
1173 '-Wno-tautological-compare', 1176 '-Wno-tautological-compare',
1174 ], 1177 ],
1175 }], 1178 }],
1176 ], 1179 ],
1177 }, 1180 },
1178 ], 1181 ],
1179 } 1182 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698