| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |