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

Side by Side Diff: extensions/extensions.gyp

Issue 792353002: Refactoring of Cast-related crypto code (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fixed typo from https://codereview.chromium.org/747223002 Created 5 years, 11 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
« no previous file with comments | « extensions/common/cast/cast_cert_validator_openssl.cc ('k') | no next file » | 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 '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
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',
87 'common/common_manifest_handlers.cc', 89 'common/common_manifest_handlers.cc',
88 'common/common_manifest_handlers.h', 90 'common/common_manifest_handlers.h',
89 'common/csp_validator.cc', 91 'common/csp_validator.cc',
90 'common/csp_validator.h', 92 'common/csp_validator.h',
91 'common/dom_action_types.h', 93 'common/dom_action_types.h',
92 'common/draggable_region.cc', 94 'common/draggable_region.cc',
93 'common/draggable_region.h', 95 'common/draggable_region.h',
94 'common/error_utils.cc', 96 'common/error_utils.cc',
95 'common/error_utils.h', 97 'common/error_utils.h',
96 'common/event_filter.cc', 98 'common/event_filter.cc',
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 'msvs_disabled_warnings': [ 4267, ], 276 'msvs_disabled_warnings': [ 4267, ],
275 'conditions': [ 277 'conditions': [
276 ['disable_nacl==0', { 278 ['disable_nacl==0', {
277 # NaClModulesHandler does not use any code in NaCl, so no dependency 279 # NaClModulesHandler does not use any code in NaCl, so no dependency
278 # on nacl_common. 280 # on nacl_common.
279 'sources': [ 281 'sources': [
280 'common/manifest_handlers/nacl_modules_handler.cc', 282 'common/manifest_handlers/nacl_modules_handler.cc',
281 'common/manifest_handlers/nacl_modules_handler.h', 283 'common/manifest_handlers/nacl_modules_handler.h',
282 ], 284 ],
283 }], 285 }],
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 }],
284 ], 311 ],
285 }, 312 },
286 { 313 {
287 # GN version: //extensions/browser 314 # GN version: //extensions/browser
288 'target_name': 'extensions_browser', 315 'target_name': 'extensions_browser',
289 'type': 'static_library', 316 'type': 'static_library',
290 'dependencies': [ 317 'dependencies': [
291 '../base/base.gyp:base', 318 '../base/base.gyp:base',
292 '../base/base.gyp:base_prefs', 319 '../base/base.gyp:base_prefs',
293 '../components/components.gyp:copresence_endpoints', 320 '../components/components.gyp:copresence_endpoints',
(...skipping 517 matching lines...) Expand 10 before | Expand all | Expand 10 after
811 '../chromeos/chromeos.gyp:chromeos', 838 '../chromeos/chromeos.gyp:chromeos',
812 ], 839 ],
813 'sources': [ 840 'sources': [
814 'browser/api/vpn_provider/vpn_provider_api.cc', 841 'browser/api/vpn_provider/vpn_provider_api.cc',
815 'browser/api/vpn_provider/vpn_provider_api.h', 842 'browser/api/vpn_provider/vpn_provider_api.h',
816 'browser/api/vpn_provider/vpn_service.cc', 843 'browser/api/vpn_provider/vpn_service.cc',
817 'browser/api/vpn_provider/vpn_service.h', 844 'browser/api/vpn_provider/vpn_service.h',
818 'browser/api/vpn_provider/vpn_service_factory.h' 845 'browser/api/vpn_provider/vpn_service_factory.h'
819 ] 846 ]
820 }], 847 }],
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 }],
847 ['OS != "linux"', { 848 ['OS != "linux"', {
848 'sources': [ 849 'sources': [
849 'browser/api/audio/audio_service.cc', 850 'browser/api/audio/audio_service.cc',
850 ] 851 ]
851 }], 852 }],
852 ], 853 ],
853 # Disable c4267 warnings until we fix size_t to int truncations. 854 # Disable c4267 warnings until we fix size_t to int truncations.
854 'msvs_disabled_warnings': [ 4267, ], 855 'msvs_disabled_warnings': [ 4267, ],
855 }, 856 },
856 { 857 {
(...skipping 442 matching lines...) Expand 10 before | Expand all | Expand 10 after
1299 'conditions': [ 1300 'conditions': [
1300 ['OS=="win" and win_use_allocator_shim==1', { 1301 ['OS=="win" and win_use_allocator_shim==1', {
1301 'dependencies': [ 1302 'dependencies': [
1302 '../base/allocator/allocator.gyp:allocator', 1303 '../base/allocator/allocator.gyp:allocator',
1303 ], 1304 ],
1304 }], 1305 }],
1305 ], 1306 ],
1306 }, 1307 },
1307 ] 1308 ]
1308 } 1309 }
OLDNEW
« no previous file with comments | « extensions/common/cast/cast_cert_validator_openssl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698