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

Side by Side Diff: content/content_child.gypi

Issue 491763002: [webcrypto] Implement AES-CTR using BoringSSL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase onto master (moves unittest to its own file) Created 6 years, 3 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 | « content/child/webcrypto/test/aes_ctr_unittest.cc ('k') | content/content_tests.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 2013 The Chromium Authors. All rights reserved. 1 # Copyright 2013 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 'dependencies': [ 6 'dependencies': [
7 '../base/base.gyp:base', 7 '../base/base.gyp:base',
8 '../components/tracing.gyp:tracing', 8 '../components/tracing.gyp:tracing',
9 '../mojo/mojo_base.gyp:mojo_application_bindings', 9 '../mojo/mojo_base.gyp:mojo_application_bindings',
10 '../mojo/mojo_base.gyp:mojo_environment_chromium', 10 '../mojo/mojo_base.gyp:mojo_environment_chromium',
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after
261 'child/webcrypto/nss/rsa_oaep_nss.cc', 261 'child/webcrypto/nss/rsa_oaep_nss.cc',
262 'child/webcrypto/nss/rsa_ssa_nss.cc', 262 'child/webcrypto/nss/rsa_ssa_nss.cc',
263 'child/webcrypto/nss/sha_nss.cc', 263 'child/webcrypto/nss/sha_nss.cc',
264 'child/webcrypto/nss/sym_key_nss.cc', 264 'child/webcrypto/nss/sym_key_nss.cc',
265 'child/webcrypto/nss/sym_key_nss.h', 265 'child/webcrypto/nss/sym_key_nss.h',
266 'child/webcrypto/nss/util_nss.cc', 266 'child/webcrypto/nss/util_nss.cc',
267 'child/webcrypto/nss/util_nss.h', 267 'child/webcrypto/nss/util_nss.h',
268 ], 268 ],
269 'webcrypto_openssl_sources': [ 269 'webcrypto_openssl_sources': [
270 'child/webcrypto/openssl/aes_cbc_openssl.cc', 270 'child/webcrypto/openssl/aes_cbc_openssl.cc',
271 'child/webcrypto/openssl/aes_ctr_openssl.cc',
271 'child/webcrypto/openssl/aes_gcm_openssl.cc', 272 'child/webcrypto/openssl/aes_gcm_openssl.cc',
272 'child/webcrypto/openssl/aes_key_openssl.cc', 273 'child/webcrypto/openssl/aes_key_openssl.cc',
273 'child/webcrypto/openssl/aes_key_openssl.h', 274 'child/webcrypto/openssl/aes_key_openssl.h',
274 'child/webcrypto/openssl/aes_kw_openssl.cc', 275 'child/webcrypto/openssl/aes_kw_openssl.cc',
275 'child/webcrypto/openssl/hmac_openssl.cc', 276 'child/webcrypto/openssl/hmac_openssl.cc',
276 'child/webcrypto/openssl/key_openssl.cc', 277 'child/webcrypto/openssl/key_openssl.cc',
277 'child/webcrypto/openssl/key_openssl.h', 278 'child/webcrypto/openssl/key_openssl.h',
278 'child/webcrypto/openssl/rsa_key_openssl.cc', 279 'child/webcrypto/openssl/rsa_key_openssl.cc',
279 'child/webcrypto/openssl/rsa_key_openssl.h', 280 'child/webcrypto/openssl/rsa_key_openssl.h',
280 'child/webcrypto/openssl/rsa_oaep_openssl.cc', 281 'child/webcrypto/openssl/rsa_oaep_openssl.cc',
(...skipping 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
359 }, { 360 }, {
360 'dependencies': [ 361 'dependencies': [
361 '../third_party/nss/nss.gyp:nspr', 362 '../third_party/nss/nss.gyp:nspr',
362 '../third_party/nss/nss.gyp:nss', 363 '../third_party/nss/nss.gyp:nss',
363 ], 364 ],
364 }], 365 }],
365 ], 366 ],
366 }], 367 }],
367 ], 368 ],
368 } 369 }
OLDNEW
« no previous file with comments | « content/child/webcrypto/test/aes_ctr_unittest.cc ('k') | content/content_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698