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

Side by Side Diff: content/content_child.gypi

Issue 401153002: Switch to BoringSSL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase across DEPS change 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/openssl/rsa_key_openssl.cc ('k') | content/zygote/zygote_main_linux.cc » ('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.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 316 matching lines...) Expand 10 before | Expand all | Expand 10 after
327 ['OS=="win"', { 327 ['OS=="win"', {
328 'sources!': [ 328 'sources!': [
329 'child/npapi/webplugin_delegate_impl_aura.cc', 329 'child/npapi/webplugin_delegate_impl_aura.cc',
330 ], 330 ],
331 }], 331 }],
332 ['use_openssl==1', { 332 ['use_openssl==1', {
333 'sources': [ 333 'sources': [
334 '<@(webcrypto_openssl_sources)', 334 '<@(webcrypto_openssl_sources)',
335 ], 335 ],
336 'dependencies': [ 336 'dependencies': [
337 '../third_party/openssl/openssl.gyp:openssl', 337 '../third_party/boringssl/boringssl.gyp:boringssl',
338 ], 338 ],
339 }, { 339 }, {
340 'sources': [ 340 'sources': [
341 '<@(webcrypto_nss_sources)', 341 '<@(webcrypto_nss_sources)',
342 ], 342 ],
343 'conditions': [ 343 'conditions': [
344 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { 344 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', {
345 'dependencies': [ 345 'dependencies': [
346 '../build/linux/system.gyp:ssl', 346 '../build/linux/system.gyp:ssl',
347 ], 347 ],
348 }, { 348 }, {
349 'dependencies': [ 349 'dependencies': [
350 '../third_party/nss/nss.gyp:nspr', 350 '../third_party/nss/nss.gyp:nspr',
351 '../third_party/nss/nss.gyp:nss', 351 '../third_party/nss/nss.gyp:nss',
352 ], 352 ],
353 }], 353 }],
354 ], 354 ],
355 }], 355 }],
356 ], 356 ],
357 } 357 }
OLDNEW
« no previous file with comments | « content/child/webcrypto/openssl/rsa_key_openssl.cc ('k') | content/zygote/zygote_main_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698