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

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: Fixes in response to comments by mfoltz 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
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 }],
311 ['OS != "linux"', {
312 'sources': [
313 'browser/api/audio/audio_service.cc',
314 ]
315 }],
284 ], 316 ],
285 }, 317 },
286 { 318 {
287 # GN version: //extensions/browser 319 # GN version: //extensions/browser
288 'target_name': 'extensions_browser', 320 'target_name': 'extensions_browser',
289 'type': 'static_library', 321 'type': 'static_library',
290 'dependencies': [ 322 'dependencies': [
291 '../base/base.gyp:base', 323 '../base/base.gyp:base',
292 '../base/base.gyp:base_prefs', 324 '../base/base.gyp:base_prefs',
293 '../components/components.gyp:copresence_endpoints', 325 '../components/components.gyp:copresence_endpoints',
(...skipping 514 matching lines...) Expand 10 before | Expand all | Expand 10 after
808 '../chromeos/chromeos.gyp:chromeos', 840 '../chromeos/chromeos.gyp:chromeos',
809 ], 841 ],
810 'sources': [ 842 'sources': [
811 'browser/api/vpn_provider/vpn_provider_api.cc', 843 'browser/api/vpn_provider/vpn_provider_api.cc',
812 'browser/api/vpn_provider/vpn_provider_api.h', 844 'browser/api/vpn_provider/vpn_provider_api.h',
813 'browser/api/vpn_provider/vpn_service.cc', 845 'browser/api/vpn_provider/vpn_service.cc',
814 'browser/api/vpn_provider/vpn_service.h', 846 'browser/api/vpn_provider/vpn_service.h',
815 'browser/api/vpn_provider/vpn_service_factory.h' 847 'browser/api/vpn_provider/vpn_service_factory.h'
816 ] 848 ]
817 }], 849 }],
818 ['use_openssl==1', {
819 'sources': [
820 'browser/api/cast_channel/cast_auth_util_openssl.cc',
821 ],
822 'dependencies': [
823 '../third_party/boringssl/boringssl.gyp:boringssl',
824 ],
825 }, {
826 'sources': [
827 # cast_auth_util_nss.cc uses NSS functions.
828 'browser/api/cast_channel/cast_auth_util_nss.cc',
829 ],
830 'conditions': [
831 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"' , {
832 'dependencies': [
833 '../build/linux/system.gyp:ssl',
834 ],
835 }],
836 ['OS == "mac" or OS == "ios" or OS == "win"', {
837 'dependencies': [
838 '../third_party/nss/nss.gyp:nspr',
839 '../third_party/nss/nss.gyp:nss',
840 ],
841 }],
842 ],
843 }],
844 ['OS != "linux"', {
845 'sources': [
846 'browser/api/audio/audio_service.cc',
847 ]
848 }],
849 ], 850 ],
850 # Disable c4267 warnings until we fix size_t to int truncations. 851 # Disable c4267 warnings until we fix size_t to int truncations.
851 'msvs_disabled_warnings': [ 4267, ], 852 'msvs_disabled_warnings': [ 4267, ],
852 }, 853 },
853 { 854 {
854 # GN version: //extensions/renderer 855 # GN version: //extensions/renderer
855 'target_name': 'extensions_renderer', 856 'target_name': 'extensions_renderer',
856 'type': 'static_library', 857 'type': 'static_library',
857 'dependencies': [ 858 'dependencies': [
858 'extensions_resources.gyp:extensions_resources', 859 'extensions_resources.gyp:extensions_resources',
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
1294 'conditions': [ 1295 'conditions': [
1295 ['OS=="win" and win_use_allocator_shim==1', { 1296 ['OS=="win" and win_use_allocator_shim==1', {
1296 'dependencies': [ 1297 'dependencies': [
1297 '../base/allocator/allocator.gyp:allocator', 1298 '../base/allocator/allocator.gyp:allocator',
1298 ], 1299 ],
1299 }], 1300 }],
1300 ], 1301 ],
1301 }, 1302 },
1302 ] 1303 ]
1303 } 1304 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698