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

Side by Side Diff: content/content_child.gypi

Issue 379383002: Refactor WebCrypto code (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Put JWK rsa parameters into a struct Created 6 years, 5 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/webcrypto_util.cc ('k') | 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 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.gyp:mojo_environment_chromium', 9 '../mojo/mojo.gyp:mojo_environment_chromium',
10 '../mojo/mojo.gyp:mojo_service_provider_bindings', 10 '../mojo/mojo.gyp:mojo_service_provider_bindings',
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 'child/web_discardable_memory_impl.cc', 186 'child/web_discardable_memory_impl.cc',
187 'child/web_discardable_memory_impl.h', 187 'child/web_discardable_memory_impl.h',
188 'child/web_socket_stream_handle_bridge.h', 188 'child/web_socket_stream_handle_bridge.h',
189 'child/web_socket_stream_handle_delegate.h', 189 'child/web_socket_stream_handle_delegate.h',
190 'child/web_socket_stream_handle_impl.cc', 190 'child/web_socket_stream_handle_impl.cc',
191 'child/web_socket_stream_handle_impl.h', 191 'child/web_socket_stream_handle_impl.h',
192 'child/web_url_loader_impl.cc', 192 'child/web_url_loader_impl.cc',
193 'child/web_url_loader_impl.h', 193 'child/web_url_loader_impl.h',
194 'child/webblobregistry_impl.cc', 194 'child/webblobregistry_impl.cc',
195 'child/webblobregistry_impl.h', 195 'child/webblobregistry_impl.h',
196 'child/webcrypto/algorithm.cc',
197 'child/webcrypto/algorithm.h',
198 'child/webcrypto/algorithm_dispatch.cc',
199 'child/webcrypto/algorithm_dispatch.h',
200 'child/webcrypto/algorithm_registry.cc',
201 'child/webcrypto/algorithm_registry.h',
196 'child/webcrypto/crypto_data.cc', 202 'child/webcrypto/crypto_data.cc',
197 'child/webcrypto/crypto_data.h', 203 'child/webcrypto/crypto_data.h',
198 'child/webcrypto/jwk.cc', 204 'child/webcrypto/jwk.cc',
199 'child/webcrypto/jwk.h', 205 'child/webcrypto/jwk.h',
206 'child/webcrypto/nss/aes_cbc_nss.cc',
207 'child/webcrypto/nss/aes_cbc_nss.h',
208 'child/webcrypto/nss/aes_gcm_nss.cc',
209 'child/webcrypto/nss/aes_gcm_nss.h',
210 'child/webcrypto/nss/aes_key_nss.cc',
211 'child/webcrypto/nss/aes_key_nss.h',
212 'child/webcrypto/nss/aes_kw_nss.cc',
213 'child/webcrypto/nss/aes_kw_nss.h',
214 'child/webcrypto/nss/algorithms_nss.h',
215 'child/webcrypto/nss/hmac_nss.cc',
216 'child/webcrypto/nss/hmac_nss.h',
217 'child/webcrypto/nss/key_nss.cc',
218 'child/webcrypto/nss/key_nss.h',
219 'child/webcrypto/nss/rsa_key_nss.cc',
220 'child/webcrypto/nss/rsa_key_nss.h',
221 'child/webcrypto/nss/rsa_oaep_nss.cc',
222 'child/webcrypto/nss/rsa_oaep_nss.h',
223 'child/webcrypto/nss/rsa_ssa_nss.cc',
224 'child/webcrypto/nss/rsa_ssa_nss.h',
225 'child/webcrypto/nss/sha_nss.cc',
226 'child/webcrypto/nss/sym_key_nss.cc',
227 'child/webcrypto/nss/sym_key_nss.h',
228 'child/webcrypto/nss/util_nss.cc',
229 'child/webcrypto/nss/util_nss.h',
200 'child/webcrypto/platform_crypto.h', 230 'child/webcrypto/platform_crypto.h',
201 'child/webcrypto/platform_crypto_nss.cc',
202 'child/webcrypto/platform_crypto_openssl.cc', 231 'child/webcrypto/platform_crypto_openssl.cc',
203 'child/webcrypto/shared_crypto.cc',
204 'child/webcrypto/shared_crypto.h',
205 'child/webcrypto/status.cc', 232 'child/webcrypto/status.cc',
206 'child/webcrypto/status.h', 233 'child/webcrypto/status.h',
234 'child/webcrypto/structured_clone.cc',
235 'child/webcrypto/structured_clone.h',
207 'child/webcrypto/webcrypto_impl.cc', 236 'child/webcrypto/webcrypto_impl.cc',
208 'child/webcrypto/webcrypto_impl.h', 237 'child/webcrypto/webcrypto_impl.h',
209 'child/webcrypto/webcrypto_util.cc', 238 'child/webcrypto/webcrypto_util.cc',
210 'child/webcrypto/webcrypto_util.h', 239 'child/webcrypto/webcrypto_util.h',
211 'child/webfallbackthemeengine_impl.cc', 240 'child/webfallbackthemeengine_impl.cc',
212 'child/webfallbackthemeengine_impl.h', 241 'child/webfallbackthemeengine_impl.h',
213 'child/webfileutilities_impl.cc', 242 'child/webfileutilities_impl.cc',
214 'child/webfileutilities_impl.h', 243 'child/webfileutilities_impl.h',
215 'child/webmessageportchannel_impl.cc', 244 'child/webmessageportchannel_impl.cc',
216 'child/webmessageportchannel_impl.h', 245 'child/webmessageportchannel_impl.h',
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 }, { 334 }, {
306 'dependencies': [ 335 'dependencies': [
307 '../third_party/nss/nss.gyp:nspr', 336 '../third_party/nss/nss.gyp:nspr',
308 '../third_party/nss/nss.gyp:nss', 337 '../third_party/nss/nss.gyp:nss',
309 ], 338 ],
310 }], 339 }],
311 ], 340 ],
312 }], 341 }],
313 ], 342 ],
314 } 343 }
OLDNEW
« no previous file with comments | « content/child/webcrypto/webcrypto_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698