| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 'common/api/bluetooth/bluetooth_manifest_handler.h', | 77 'common/api/bluetooth/bluetooth_manifest_handler.h', |
| 78 'common/api/bluetooth/bluetooth_manifest_permission.cc', | 78 'common/api/bluetooth/bluetooth_manifest_permission.cc', |
| 79 'common/api/bluetooth/bluetooth_manifest_permission.h', | 79 'common/api/bluetooth/bluetooth_manifest_permission.h', |
| 80 'common/api/messaging/message.h', | 80 'common/api/messaging/message.h', |
| 81 'common/api/sockets/sockets_manifest_data.cc', | 81 'common/api/sockets/sockets_manifest_data.cc', |
| 82 'common/api/sockets/sockets_manifest_data.h', | 82 'common/api/sockets/sockets_manifest_data.h', |
| 83 'common/api/sockets/sockets_manifest_handler.cc', | 83 'common/api/sockets/sockets_manifest_handler.cc', |
| 84 'common/api/sockets/sockets_manifest_handler.h', | 84 'common/api/sockets/sockets_manifest_handler.h', |
| 85 'common/api/sockets/sockets_manifest_permission.cc', | 85 'common/api/sockets/sockets_manifest_permission.cc', |
| 86 'common/api/sockets/sockets_manifest_permission.h', | 86 'common/api/sockets/sockets_manifest_permission.h', |
| 87 'common/cast/cast_cert_validator.cc', | |
| 88 'common/cast/cast_cert_validator.h', | |
| 89 'common/common_manifest_handlers.cc', | 87 'common/common_manifest_handlers.cc', |
| 90 'common/common_manifest_handlers.h', | 88 'common/common_manifest_handlers.h', |
| 91 'common/csp_validator.cc', | 89 'common/csp_validator.cc', |
| 92 'common/csp_validator.h', | 90 'common/csp_validator.h', |
| 93 'common/dom_action_types.h', | 91 'common/dom_action_types.h', |
| 94 'common/draggable_region.cc', | 92 'common/draggable_region.cc', |
| 95 'common/draggable_region.h', | 93 'common/draggable_region.h', |
| 96 'common/error_utils.cc', | 94 'common/error_utils.cc', |
| 97 'common/error_utils.h', | 95 'common/error_utils.h', |
| 98 'common/event_filter.cc', | 96 'common/event_filter.cc', |
| (...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 'msvs_disabled_warnings': [ 4267, ], | 274 'msvs_disabled_warnings': [ 4267, ], |
| 277 'conditions': [ | 275 'conditions': [ |
| 278 ['disable_nacl==0', { | 276 ['disable_nacl==0', { |
| 279 # NaClModulesHandler does not use any code in NaCl, so no dependency | 277 # NaClModulesHandler does not use any code in NaCl, so no dependency |
| 280 # on nacl_common. | 278 # on nacl_common. |
| 281 'sources': [ | 279 'sources': [ |
| 282 'common/manifest_handlers/nacl_modules_handler.cc', | 280 'common/manifest_handlers/nacl_modules_handler.cc', |
| 283 'common/manifest_handlers/nacl_modules_handler.h', | 281 'common/manifest_handlers/nacl_modules_handler.h', |
| 284 ], | 282 ], |
| 285 }], | 283 }], |
| 286 ['use_openssl==1', { | |
| 287 'sources': [ | |
| 288 'common/cast/cast_cert_validator_openssl.cc', | |
| 289 ], | |
| 290 'dependencies': [ | |
| 291 '../third_party/boringssl/boringssl.gyp:boringssl', | |
| 292 ], | |
| 293 }, { | |
| 294 'sources': [ | |
| 295 'common/cast/cast_cert_validator_nss.cc', | |
| 296 ], | |
| 297 'conditions': [ | |
| 298 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"'
, { | |
| 299 'dependencies': [ | |
| 300 '../build/linux/system.gyp:ssl', | |
| 301 ], | |
| 302 }], | |
| 303 ['OS == "mac" or OS == "ios" or OS == "win"', { | |
| 304 'dependencies': [ | |
| 305 '../third_party/nss/nss.gyp:nspr', | |
| 306 '../third_party/nss/nss.gyp:nss', | |
| 307 ], | |
| 308 }], | |
| 309 ], | |
| 310 }], | |
| 311 ], | 284 ], |
| 312 }, | 285 }, |
| 313 { | 286 { |
| 314 # GN version: //extensions/browser | 287 # GN version: //extensions/browser |
| 315 'target_name': 'extensions_browser', | 288 'target_name': 'extensions_browser', |
| 316 'type': 'static_library', | 289 'type': 'static_library', |
| 317 'dependencies': [ | 290 'dependencies': [ |
| 318 '../base/base.gyp:base', | 291 '../base/base.gyp:base', |
| 319 '../base/base.gyp:base_prefs', | 292 '../base/base.gyp:base_prefs', |
| 320 '../components/components.gyp:copresence_endpoints', | 293 '../components/components.gyp:copresence_endpoints', |
| (...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 838 '../chromeos/chromeos.gyp:chromeos', | 811 '../chromeos/chromeos.gyp:chromeos', |
| 839 ], | 812 ], |
| 840 'sources': [ | 813 'sources': [ |
| 841 'browser/api/vpn_provider/vpn_provider_api.cc', | 814 'browser/api/vpn_provider/vpn_provider_api.cc', |
| 842 'browser/api/vpn_provider/vpn_provider_api.h', | 815 'browser/api/vpn_provider/vpn_provider_api.h', |
| 843 'browser/api/vpn_provider/vpn_service.cc', | 816 'browser/api/vpn_provider/vpn_service.cc', |
| 844 'browser/api/vpn_provider/vpn_service.h', | 817 'browser/api/vpn_provider/vpn_service.h', |
| 845 'browser/api/vpn_provider/vpn_service_factory.h' | 818 'browser/api/vpn_provider/vpn_service_factory.h' |
| 846 ] | 819 ] |
| 847 }], | 820 }], |
| 821 ['use_openssl==1', { |
| 822 'sources': [ |
| 823 'browser/api/cast_channel/cast_auth_util_openssl.cc', |
| 824 ], |
| 825 'dependencies': [ |
| 826 '../third_party/boringssl/boringssl.gyp:boringssl', |
| 827 ], |
| 828 }, { |
| 829 'sources': [ |
| 830 # cast_auth_util_nss.cc uses NSS functions. |
| 831 'browser/api/cast_channel/cast_auth_util_nss.cc', |
| 832 ], |
| 833 'conditions': [ |
| 834 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"'
, { |
| 835 'dependencies': [ |
| 836 '../build/linux/system.gyp:ssl', |
| 837 ], |
| 838 }], |
| 839 ['OS == "mac" or OS == "ios" or OS == "win"', { |
| 840 'dependencies': [ |
| 841 '../third_party/nss/nss.gyp:nspr', |
| 842 '../third_party/nss/nss.gyp:nss', |
| 843 ], |
| 844 }], |
| 845 ], |
| 846 }], |
| 848 ['OS != "linux"', { | 847 ['OS != "linux"', { |
| 849 'sources': [ | 848 'sources': [ |
| 850 'browser/api/audio/audio_service.cc', | 849 'browser/api/audio/audio_service.cc', |
| 851 ] | 850 ] |
| 852 }], | 851 }], |
| 853 ], | 852 ], |
| 854 # Disable c4267 warnings until we fix size_t to int truncations. | 853 # Disable c4267 warnings until we fix size_t to int truncations. |
| 855 'msvs_disabled_warnings': [ 4267, ], | 854 'msvs_disabled_warnings': [ 4267, ], |
| 856 }, | 855 }, |
| 857 { | 856 { |
| (...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1300 'conditions': [ | 1299 'conditions': [ |
| 1301 ['OS=="win" and win_use_allocator_shim==1', { | 1300 ['OS=="win" and win_use_allocator_shim==1', { |
| 1302 'dependencies': [ | 1301 'dependencies': [ |
| 1303 '../base/allocator/allocator.gyp:allocator', | 1302 '../base/allocator/allocator.gyp:allocator', |
| 1304 ], | 1303 ], |
| 1305 }], | 1304 }], |
| 1306 ], | 1305 ], |
| 1307 }, | 1306 }, |
| 1308 ] | 1307 ] |
| 1309 } | 1308 } |
| OLD | NEW |