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

Side by Side Diff: remoting/remoting.gyp

Issue 10543106: Add an explicit function to init NSS for SSL server sockets (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase to r141775 and remove suppression Created 8 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « remoting/host/simple_host_process.cc ('k') | remoting/run_all_unittests.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 # TODO(dmaclach): can we pick this up some other way? Right now it's 7 # TODO(dmaclach): can we pick this up some other way? Right now it's
8 # duplicated from chrome.gyp 8 # duplicated from chrome.gyp
9 'chromium_code': 1, 9 'chromium_code': 1,
10 # Use consistent strings across all platforms. Note that the plugin name 10 # Use consistent strings across all platforms. Note that the plugin name
(...skipping 793 matching lines...) Expand 10 before | Expand all | Expand 10 after
804 'type': 'static_library', 804 'type': 'static_library',
805 'variables': { 'enable_wexit_time_destructors': 1, }, 805 'variables': { 'enable_wexit_time_destructors': 1, },
806 'defines': [ 806 'defines': [
807 'HAVE_STDINT_H', # Required by on2_integer.h 807 'HAVE_STDINT_H', # Required by on2_integer.h
808 ], 808 ],
809 'dependencies': [ 809 'dependencies': [
810 'remoting_base', 810 'remoting_base',
811 'remoting_client', 811 'remoting_client',
812 'remoting_jingle_glue', 812 'remoting_jingle_glue',
813 '../media/media.gyp:media', 813 '../media/media.gyp:media',
814 '../net/net.gyp:net',
814 '../ppapi/ppapi.gyp:ppapi_cpp_objects', 815 '../ppapi/ppapi.gyp:ppapi_cpp_objects',
815 '../skia/skia.gyp:skia', 816 '../skia/skia.gyp:skia',
816 ], 817 ],
817 'sources': [ 818 'sources': [
818 'client/plugin/chromoting_instance.cc', 819 'client/plugin/chromoting_instance.cc',
819 'client/plugin/chromoting_instance.h', 820 'client/plugin/chromoting_instance.h',
820 'client/plugin/mac_key_event_processor.cc', 821 'client/plugin/mac_key_event_processor.cc',
821 'client/plugin/mac_key_event_processor.h', 822 'client/plugin/mac_key_event_processor.h',
822 'client/plugin/pepper_entrypoints.cc', 823 'client/plugin/pepper_entrypoints.cc',
823 'client/plugin/pepper_entrypoints.h', 824 'client/plugin/pepper_entrypoints.h',
(...skipping 19 matching lines...) Expand all
843 { 844 {
844 'target_name': 'remoting_host_plugin', 845 'target_name': 'remoting_host_plugin',
845 'type': 'loadable_module', 846 'type': 'loadable_module',
846 'variables': { 'enable_wexit_time_destructors': 1, }, 847 'variables': { 'enable_wexit_time_destructors': 1, },
847 'product_extension': '<(host_plugin_extension)', 848 'product_extension': '<(host_plugin_extension)',
848 'product_prefix': '<(host_plugin_prefix)', 849 'product_prefix': '<(host_plugin_prefix)',
849 'dependencies': [ 850 'dependencies': [
850 'remoting_base', 851 'remoting_base',
851 'remoting_host', 852 'remoting_host',
852 'remoting_jingle_glue', 853 'remoting_jingle_glue',
854 '../net/net.gyp:net',
853 '../third_party/npapi/npapi.gyp:npapi', 855 '../third_party/npapi/npapi.gyp:npapi',
854 ], 856 ],
855 'sources': [ 857 'sources': [
856 'host/branding.cc', 858 'host/branding.cc',
857 'host/branding.h', 859 'host/branding.h',
858 'host/host_ui_resource.h', 860 'host/host_ui_resource.h',
859 'host/plugin/daemon_controller.h', 861 'host/plugin/daemon_controller.h',
860 'host/plugin/daemon_controller_linux.cc', 862 'host/plugin/daemon_controller_linux.cc',
861 'host/plugin/daemon_controller_mac.cc', 863 'host/plugin/daemon_controller_mac.cc',
862 'host/plugin/daemon_controller_win.cc', 864 'host/plugin/daemon_controller_win.cc',
(...skipping 432 matching lines...) Expand 10 before | Expand all | Expand 10 after
1295 'target_name': 'remoting_simple_host', 1297 'target_name': 'remoting_simple_host',
1296 'type': 'executable', 1298 'type': 'executable',
1297 'variables': { 'enable_wexit_time_destructors': 1, }, 1299 'variables': { 'enable_wexit_time_destructors': 1, },
1298 'dependencies': [ 1300 'dependencies': [
1299 'remoting_base', 1301 'remoting_base',
1300 'remoting_host', 1302 'remoting_host',
1301 'remoting_jingle_glue', 1303 'remoting_jingle_glue',
1302 '../base/base.gyp:base', 1304 '../base/base.gyp:base',
1303 '../base/base.gyp:base_i18n', 1305 '../base/base.gyp:base_i18n',
1304 '../media/media.gyp:media', 1306 '../media/media.gyp:media',
1307 '../net/net.gyp:net',
1305 ], 1308 ],
1306 'sources': [ 1309 'sources': [
1307 'host/simple_host_process.cc', 1310 'host/simple_host_process.cc',
1308 ], 1311 ],
1309 'conditions': [ 1312 'conditions': [
1310 ['OS=="win"', { 1313 ['OS=="win"', {
1311 'dependencies': [ 1314 'dependencies': [
1312 '../ipc/ipc.gyp:ipc' 1315 '../ipc/ipc.gyp:ipc'
1313 ], 1316 ],
1314 }], 1317 }],
1315 ], 1318 ],
1316 }, # end of target 'remoting_simple_host' 1319 }, # end of target 'remoting_simple_host'
1317 1320
1318 { 1321 {
1319 'target_name': 'remoting_me2me_host', 1322 'target_name': 'remoting_me2me_host',
1320 'type': 'executable', 1323 'type': 'executable',
1321 'variables': { 'enable_wexit_time_destructors': 1, }, 1324 'variables': { 'enable_wexit_time_destructors': 1, },
1322 'dependencies': [ 1325 'dependencies': [
1323 'remoting_base', 1326 'remoting_base',
1324 'remoting_breakpad', 1327 'remoting_breakpad',
1325 'remoting_host', 1328 'remoting_host',
1326 'remoting_jingle_glue', 1329 'remoting_jingle_glue',
1327 '../base/base.gyp:base', 1330 '../base/base.gyp:base',
1328 '../base/base.gyp:base_i18n', 1331 '../base/base.gyp:base_i18n',
1329 '../media/media.gyp:media', 1332 '../media/media.gyp:media',
1333 '../net/net.gyp:net',
1330 ], 1334 ],
1331 'sources': [ 1335 'sources': [
1332 'host/branding.cc', 1336 'host/branding.cc',
1333 'host/branding.h', 1337 'host/branding.h',
1334 'host/breakpad.h', 1338 'host/breakpad.h',
1335 'host/breakpad_win.cc', 1339 'host/breakpad_win.cc',
1336 'host/host_event_logger.h', 1340 'host/host_event_logger.h',
1337 'host/sighup_listener_mac.cc', 1341 'host/sighup_listener_mac.cc',
1338 'host/sighup_listener_mac.h', 1342 'host/sighup_listener_mac.h',
1339 'host/remoting_me2me_host.cc', 1343 'host/remoting_me2me_host.cc',
(...skipping 408 matching lines...) Expand 10 before | Expand all | Expand 10 after
1748 '../base/allocator/allocator.gyp:allocator', 1752 '../base/allocator/allocator.gyp:allocator',
1749 ], 1753 ],
1750 }, 1754 },
1751 ], 1755 ],
1752 ], 1756 ],
1753 }], 1757 }],
1754 ], # end of 'conditions' 1758 ], # end of 'conditions'
1755 }, # end of target 'remoting_unittests' 1759 }, # end of target 'remoting_unittests'
1756 ], # end of targets 1760 ], # end of targets
1757 } 1761 }
OLDNEW
« no previous file with comments | « remoting/host/simple_host_process.cc ('k') | remoting/run_all_unittests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698