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 'variables': { | 6 'variables': { |
7 'chromium_code': 1, | 7 'chromium_code': 1, |
8 }, | 8 }, |
9 'targets': [ | 9 'targets': [ |
10 { | 10 { |
(...skipping 788 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
799 'dependencies!': [ | 799 'dependencies!': [ |
800 '../components/components.gyp:storage_monitor', | 800 '../components/components.gyp:storage_monitor', |
801 '../device/bluetooth/bluetooth.gyp:device_bluetooth', | 801 '../device/bluetooth/bluetooth.gyp:device_bluetooth', |
802 '../device/serial/serial.gyp:device_serial', | 802 '../device/serial/serial.gyp:device_serial', |
803 ], | 803 ], |
804 }], | 804 }], |
805 ['use_openssl==1', { | 805 ['use_openssl==1', { |
806 'sources': [ | 806 'sources': [ |
807 'browser/api/cast_channel/cast_auth_util_openssl.cc', | 807 'browser/api/cast_channel/cast_auth_util_openssl.cc', |
808 ], | 808 ], |
| 809 'dependencies': [ |
| 810 '../third_party/boringssl/boringssl.gyp:boringssl', |
| 811 ], |
809 }, { | 812 }, { |
810 'sources': [ | 813 'sources': [ |
811 # cast_auth_util_nss.cc uses NSS functions. | 814 # cast_auth_util_nss.cc uses NSS functions. |
812 'browser/api/cast_channel/cast_auth_util_nss.cc', | 815 'browser/api/cast_channel/cast_auth_util_nss.cc', |
813 ], | 816 ], |
814 }], | 817 'conditions': [ |
815 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"', { | 818 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"'
, { |
816 'dependencies': [ | 819 'dependencies': [ |
817 '../build/linux/system.gyp:ssl', | 820 '../build/linux/system.gyp:ssl', |
818 ], | 821 ], |
819 }], | 822 }], |
820 ['OS == "mac" or OS == "ios" or OS == "win"', { | 823 ['OS == "mac" or OS == "ios" or OS == "win"', { |
821 'dependencies': [ | 824 'dependencies': [ |
822 '../third_party/nss/nss.gyp:nspr', | 825 '../third_party/nss/nss.gyp:nspr', |
823 '../third_party/nss/nss.gyp:nss', | 826 '../third_party/nss/nss.gyp:nss', |
| 827 ], |
| 828 }], |
824 ], | 829 ], |
825 }], | 830 }], |
826 ], | 831 ], |
827 # Disable c4267 warnings until we fix size_t to int truncations. | 832 # Disable c4267 warnings until we fix size_t to int truncations. |
828 'msvs_disabled_warnings': [ 4267, ], | 833 'msvs_disabled_warnings': [ 4267, ], |
829 }, | 834 }, |
830 { | 835 { |
831 # GN version: //extensions/renderer | 836 # GN version: //extensions/renderer |
832 'target_name': 'extensions_renderer', | 837 'target_name': 'extensions_renderer', |
833 'type': 'static_library', | 838 'type': 'static_library', |
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1241 'conditions': [ | 1246 'conditions': [ |
1242 ['OS=="win" and win_use_allocator_shim==1', { | 1247 ['OS=="win" and win_use_allocator_shim==1', { |
1243 'dependencies': [ | 1248 'dependencies': [ |
1244 '../base/allocator/allocator.gyp:allocator', | 1249 '../base/allocator/allocator.gyp:allocator', |
1245 ], | 1250 ], |
1246 }], | 1251 }], |
1247 ], | 1252 ], |
1248 }, | 1253 }, |
1249 ] | 1254 ] |
1250 } | 1255 } |
OLD | NEW |