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

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: Rebase onto master 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
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_gcm_nss.cc',
208 'child/webcrypto/nss/aes_key_nss.cc',
209 'child/webcrypto/nss/aes_key_nss.h',
210 'child/webcrypto/nss/aes_kw_nss.cc',
211 'child/webcrypto/nss/hmac_nss.cc',
212 'child/webcrypto/nss/key_nss.cc',
213 'child/webcrypto/nss/key_nss.h',
214 'child/webcrypto/nss/rsa_key_nss.cc',
215 'child/webcrypto/nss/rsa_key_nss.h',
216 'child/webcrypto/nss/rsa_oaep_nss.cc',
217 'child/webcrypto/nss/rsa_ssa_nss.cc',
218 'child/webcrypto/nss/sha_nss.cc',
219 'child/webcrypto/nss/sym_key_nss.cc',
220 'child/webcrypto/nss/sym_key_nss.h',
221 'child/webcrypto/nss/util_nss.cc',
222 'child/webcrypto/nss/util_nss.h',
223 'child/webcrypto/openssl/aes_cbc_openssl.cc',
224 'child/webcrypto/openssl/aes_gcm_openssl.cc',
225 'child/webcrypto/openssl/aes_key_openssl.cc',
226 'child/webcrypto/openssl/aes_key_openssl.h',
227 'child/webcrypto/openssl/aes_kw_openssl.cc',
228 'child/webcrypto/openssl/hmac_openssl.cc',
229 'child/webcrypto/openssl/key_openssl.cc',
230 'child/webcrypto/openssl/key_openssl.h',
231 'child/webcrypto/openssl/sha_openssl.cc',
232 'child/webcrypto/openssl/sym_key_openssl.cc',
233 'child/webcrypto/openssl/sym_key_openssl.h',
234 'child/webcrypto/openssl/util_openssl.cc',
235 'child/webcrypto/openssl/util_openssl.h',
200 'child/webcrypto/platform_crypto.h', 236 'child/webcrypto/platform_crypto.h',
201 'child/webcrypto/platform_crypto_nss.cc',
202 'child/webcrypto/platform_crypto_openssl.cc',
203 'child/webcrypto/shared_crypto.cc',
204 'child/webcrypto/shared_crypto.h',
205 'child/webcrypto/status.cc', 237 'child/webcrypto/status.cc',
206 'child/webcrypto/status.h', 238 'child/webcrypto/status.h',
239 'child/webcrypto/structured_clone.cc',
240 'child/webcrypto/structured_clone.h',
207 'child/webcrypto/webcrypto_impl.cc', 241 'child/webcrypto/webcrypto_impl.cc',
208 'child/webcrypto/webcrypto_impl.h', 242 'child/webcrypto/webcrypto_impl.h',
209 'child/webcrypto/webcrypto_util.cc', 243 'child/webcrypto/webcrypto_util.cc',
210 'child/webcrypto/webcrypto_util.h', 244 'child/webcrypto/webcrypto_util.h',
211 'child/webfallbackthemeengine_impl.cc', 245 'child/webfallbackthemeengine_impl.cc',
212 'child/webfallbackthemeengine_impl.h', 246 'child/webfallbackthemeengine_impl.h',
213 'child/webfileutilities_impl.cc', 247 'child/webfileutilities_impl.cc',
214 'child/webfileutilities_impl.h', 248 'child/webfileutilities_impl.h',
215 'child/webmessageportchannel_impl.cc', 249 'child/webmessageportchannel_impl.cc',
216 'child/webmessageportchannel_impl.h', 250 'child/webmessageportchannel_impl.h',
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
280 'sources!': [ 314 'sources!': [
281 'child/npapi/webplugin_delegate_impl_mac.mm', 315 'child/npapi/webplugin_delegate_impl_mac.mm',
282 ], 316 ],
283 }], 317 }],
284 ['OS=="win"', { 318 ['OS=="win"', {
285 'sources!': [ 319 'sources!': [
286 'child/npapi/webplugin_delegate_impl_aura.cc', 320 'child/npapi/webplugin_delegate_impl_aura.cc',
287 ], 321 ],
288 }], 322 }],
289 ['use_openssl==1', { 323 ['use_openssl==1', {
290 'sources!': [ 324 'sources/': [ ['exclude', '/webcrypto/nss/.*'] ],
291 'child/webcrypto/platform_crypto_nss.cc',
292 ],
293 'dependencies': [ 325 'dependencies': [
294 '../third_party/openssl/openssl.gyp:openssl', 326 '../third_party/openssl/openssl.gyp:openssl',
295 ], 327 ],
296 }, { 328 }, {
297 'sources!': [ 329 'sources/': [ ['exclude', '/webcrypto/openssl/.*'] ],
298 'child/webcrypto/platform_crypto_openssl.cc',
299 ],
300 'conditions': [ 330 'conditions': [
301 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { 331 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
302 'dependencies': [ 332 'dependencies': [
303 '../build/linux/system.gyp:ssl', 333 '../build/linux/system.gyp:ssl',
304 ], 334 ],
305 }, { 335 }, {
306 'dependencies': [ 336 'dependencies': [
307 '../third_party/nss/nss.gyp:nspr', 337 '../third_party/nss/nss.gyp:nspr',
308 '../third_party/nss/nss.gyp:nss', 338 '../third_party/nss/nss.gyp:nss',
309 ], 339 ],
310 }], 340 }],
311 ], 341 ],
312 }], 342 }],
313 ], 343 ],
314 } 344 }
OLDNEW
« content/child/webcrypto/nss/aes_key_nss.h ('K') | « content/child/webcrypto/webcrypto_util.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698