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

Side by Side Diff: nss.gyp

Issue 12042100: Add an optimized 32-bit implementation of the NIST P-256 elliptic curve. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/nss/
Patch Set: Don't use ecp_256.c 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
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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 'mozilla/security/nss/lib/freebl/ecl/ec2.h', 557 'mozilla/security/nss/lib/freebl/ecl/ec2.h',
558 'mozilla/security/nss/lib/freebl/ecl/ecl-curve.h', 558 'mozilla/security/nss/lib/freebl/ecl/ecl-curve.h',
559 'mozilla/security/nss/lib/freebl/ecl/ecl-exp.h', 559 'mozilla/security/nss/lib/freebl/ecl/ecl-exp.h',
560 'mozilla/security/nss/lib/freebl/ecl/ecl-priv.h', 560 'mozilla/security/nss/lib/freebl/ecl/ecl-priv.h',
561 'mozilla/security/nss/lib/freebl/ecl/ecl.c', 561 'mozilla/security/nss/lib/freebl/ecl/ecl.c',
562 'mozilla/security/nss/lib/freebl/ecl/ecl.h', 562 'mozilla/security/nss/lib/freebl/ecl/ecl.h',
563 'mozilla/security/nss/lib/freebl/ecl/ecl_curve.c', 563 'mozilla/security/nss/lib/freebl/ecl/ecl_curve.c',
564 'mozilla/security/nss/lib/freebl/ecl/ecl_gf.c', 564 'mozilla/security/nss/lib/freebl/ecl/ecl_gf.c',
565 'mozilla/security/nss/lib/freebl/ecl/ecl_mult.c', 565 'mozilla/security/nss/lib/freebl/ecl/ecl_mult.c',
566 'mozilla/security/nss/lib/freebl/ecl/ecp.h', 566 'mozilla/security/nss/lib/freebl/ecl/ecp.h',
567 'mozilla/security/nss/lib/freebl/ecl/ecp_256_32.c',
567 'mozilla/security/nss/lib/freebl/ecl/ecp_aff.c', 568 'mozilla/security/nss/lib/freebl/ecl/ecp_aff.c',
568 'mozilla/security/nss/lib/freebl/ecl/ecp_jac.c', 569 'mozilla/security/nss/lib/freebl/ecl/ecp_jac.c',
569 'mozilla/security/nss/lib/freebl/ecl/ecp_jm.c', 570 'mozilla/security/nss/lib/freebl/ecl/ecp_jm.c',
570 'mozilla/security/nss/lib/freebl/ecl/ecp_mont.c', 571 'mozilla/security/nss/lib/freebl/ecl/ecp_mont.c',
571 'mozilla/security/nss/lib/freebl/ecl/ec_naf.c', 572 'mozilla/security/nss/lib/freebl/ecl/ec_naf.c',
572 'mozilla/security/nss/lib/freebl/gcm.c', 573 'mozilla/security/nss/lib/freebl/gcm.c',
573 'mozilla/security/nss/lib/freebl/gcm.h', 574 'mozilla/security/nss/lib/freebl/gcm.h',
574 'mozilla/security/nss/lib/freebl/jpake.c', 575 'mozilla/security/nss/lib/freebl/jpake.c',
575 'mozilla/security/nss/lib/freebl/md2.c', 576 'mozilla/security/nss/lib/freebl/md2.c',
576 'mozilla/security/nss/lib/freebl/md5.c', 577 'mozilla/security/nss/lib/freebl/md5.c',
(...skipping 580 matching lines...) Expand 10 before | Expand all | Expand 10 after
1157 '-Wno-incompatible-pointer-types', 1158 '-Wno-incompatible-pointer-types',
1158 '-Wno-logical-op-parentheses', 1159 '-Wno-logical-op-parentheses',
1159 '-Wno-switch', 1160 '-Wno-switch',
1160 '-Wno-tautological-compare', 1161 '-Wno-tautological-compare',
1161 ], 1162 ],
1162 }], 1163 }],
1163 ], 1164 ],
1164 }, 1165 },
1165 ], 1166 ],
1166 } 1167 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698