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

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 ChromeOS unit tests. Created 6 years 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 173 matching lines...) Expand 10 before | Expand all | Expand 10 after
270 'msvs_disabled_warnings': [ 4267, ], 272 'msvs_disabled_warnings': [ 4267, ],
271 'conditions': [ 273 'conditions': [
272 ['disable_nacl==0', { 274 ['disable_nacl==0', {
273 # NaClModulesHandler does not use any code in NaCl, so no dependency 275 # NaClModulesHandler does not use any code in NaCl, so no dependency
274 # on nacl_common. 276 # on nacl_common.
275 'sources': [ 277 'sources': [
276 'common/manifest_handlers/nacl_modules_handler.cc', 278 'common/manifest_handlers/nacl_modules_handler.cc',
277 'common/manifest_handlers/nacl_modules_handler.h', 279 'common/manifest_handlers/nacl_modules_handler.h',
278 ], 280 ],
279 }], 281 }],
282 ['use_openssl==1', {
283 'sources': [
284 'common/cast/cast_cert_validator_openssl.cc',
285 ],
286 'dependencies': [
287 '../third_party/boringssl/boringssl.gyp:boringssl',
288 ],
289 }, {
290 'sources': [
291 'common/cast/cast_cert_validator_nss.cc',
292 ],
293 'conditions': [
294 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"' , {
295 'dependencies': [
296 '../build/linux/system.gyp:ssl',
297 ],
298 }],
299 ['OS == "mac" or OS == "ios" or OS == "win"', {
300 'dependencies': [
301 '../third_party/nss/nss.gyp:nspr',
302 '../third_party/nss/nss.gyp:nss',
303 ],
304 }],
305 ],
306 }],
280 ], 307 ],
281 }, 308 },
282 { 309 {
283 # GN version: //extensions/browser 310 # GN version: //extensions/browser
284 'target_name': 'extensions_browser', 311 'target_name': 'extensions_browser',
285 'type': 'static_library', 312 'type': 'static_library',
286 'dependencies': [ 313 'dependencies': [
287 '../base/base.gyp:base', 314 '../base/base.gyp:base',
288 '../base/base.gyp:base_prefs', 315 '../base/base.gyp:base_prefs',
289 '../components/components.gyp:copresence_endpoints', 316 '../components/components.gyp:copresence_endpoints',
(...skipping 507 matching lines...) Expand 10 before | Expand all | Expand 10 after
797 }], 824 }],
798 ['OS == "linux" and chromeos == 1', { 825 ['OS == "linux" and chromeos == 1', {
799 'sources': [ 826 'sources': [
800 'browser/api/vpn_provider/vpn_provider_api.cc', 827 'browser/api/vpn_provider/vpn_provider_api.cc',
801 'browser/api/vpn_provider/vpn_provider_api.h', 828 'browser/api/vpn_provider/vpn_provider_api.h',
802 'browser/api/vpn_provider/vpn_service.cc', 829 'browser/api/vpn_provider/vpn_service.cc',
803 'browser/api/vpn_provider/vpn_service.h', 830 'browser/api/vpn_provider/vpn_service.h',
804 'browser/api/vpn_provider/vpn_service_factory.h' 831 'browser/api/vpn_provider/vpn_service_factory.h'
805 ] 832 ]
806 }], 833 }],
807 ['use_openssl==1', {
808 'sources': [
809 'browser/api/cast_channel/cast_auth_util_openssl.cc',
810 ],
811 'dependencies': [
812 '../third_party/boringssl/boringssl.gyp:boringssl',
813 ],
814 }, {
815 'sources': [
816 # cast_auth_util_nss.cc uses NSS functions.
817 'browser/api/cast_channel/cast_auth_util_nss.cc',
818 ],
819 'conditions': [
820 ['os_posix == 1 and OS != "mac" and OS != "ios" and OS != "android"' , {
821 'dependencies': [
822 '../build/linux/system.gyp:ssl',
823 ],
824 }],
825 ['OS == "mac" or OS == "ios" or OS == "win"', {
826 'dependencies': [
827 '../third_party/nss/nss.gyp:nspr',
828 '../third_party/nss/nss.gyp:nss',
829 ],
830 }],
831 ],
832 }],
833 ], 834 ],
834 # Disable c4267 warnings until we fix size_t to int truncations. 835 # Disable c4267 warnings until we fix size_t to int truncations.
835 'msvs_disabled_warnings': [ 4267, ], 836 'msvs_disabled_warnings': [ 4267, ],
836 }, 837 },
837 { 838 {
838 # GN version: //extensions/renderer 839 # GN version: //extensions/renderer
839 'target_name': 'extensions_renderer', 840 'target_name': 'extensions_renderer',
840 'type': 'static_library', 841 'type': 'static_library',
841 'dependencies': [ 842 'dependencies': [
842 'extensions_resources.gyp:extensions_resources', 843 'extensions_resources.gyp:extensions_resources',
(...skipping 435 matching lines...) Expand 10 before | Expand all | Expand 10 after
1278 'conditions': [ 1279 'conditions': [
1279 ['OS=="win" and win_use_allocator_shim==1', { 1280 ['OS=="win" and win_use_allocator_shim==1', {
1280 'dependencies': [ 1281 'dependencies': [
1281 '../base/allocator/allocator.gyp:allocator', 1282 '../base/allocator/allocator.gyp:allocator',
1282 ], 1283 ],
1283 }], 1284 }],
1284 ], 1285 ],
1285 }, 1286 },
1286 ] 1287 ]
1287 } 1288 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698