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

Side by Side Diff: remoting/remoting.gyp

Issue 10783028: Implement ChromiumSocketFactory. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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/jingle_glue/chromium_socket_factory_unittest.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 (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 1462 matching lines...) Expand 10 before | Expand all | Expand 10 after
1473 '../jingle/jingle.gyp:jingle_glue', 1473 '../jingle/jingle.gyp:jingle_glue',
1474 '../jingle/jingle.gyp:notifier', 1474 '../jingle/jingle.gyp:notifier',
1475 '../third_party/libjingle/libjingle.gyp:libjingle', 1475 '../third_party/libjingle/libjingle.gyp:libjingle',
1476 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', 1476 '../third_party/libjingle/libjingle.gyp:libjingle_p2p',
1477 ], 1477 ],
1478 'export_dependent_settings': [ 1478 'export_dependent_settings': [
1479 '../third_party/libjingle/libjingle.gyp:libjingle', 1479 '../third_party/libjingle/libjingle.gyp:libjingle',
1480 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', 1480 '../third_party/libjingle/libjingle.gyp:libjingle_p2p',
1481 ], 1481 ],
1482 'sources': [ 1482 'sources': [
1483 'jingle_glue/chromium_socket_factory.cc',
1484 'jingle_glue/chromium_socket_factory.h',
1483 'jingle_glue/iq_sender.cc', 1485 'jingle_glue/iq_sender.cc',
1484 'jingle_glue/iq_sender.h', 1486 'jingle_glue/iq_sender.h',
1485 'jingle_glue/javascript_signal_strategy.cc', 1487 'jingle_glue/javascript_signal_strategy.cc',
1486 'jingle_glue/javascript_signal_strategy.h', 1488 'jingle_glue/javascript_signal_strategy.h',
1487 'jingle_glue/jingle_info_request.cc', 1489 'jingle_glue/jingle_info_request.cc',
1488 'jingle_glue/jingle_info_request.h', 1490 'jingle_glue/jingle_info_request.h',
1489 'jingle_glue/jingle_thread.cc', 1491 'jingle_glue/jingle_thread.cc',
1490 'jingle_glue/jingle_thread.h', 1492 'jingle_glue/jingle_thread.h',
1491 'jingle_glue/signal_strategy.h', 1493 'jingle_glue/signal_strategy.h',
1492 'jingle_glue/ssl_adapter.h', 1494 'jingle_glue/ssl_adapter.h',
(...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after
1699 'host/log_to_server_unittest.cc', 1701 'host/log_to_server_unittest.cc',
1700 'host/pin_hash_unittest.cc', 1702 'host/pin_hash_unittest.cc',
1701 'host/register_support_host_request_unittest.cc', 1703 'host/register_support_host_request_unittest.cc',
1702 'host/remote_input_filter_unittest.cc', 1704 'host/remote_input_filter_unittest.cc',
1703 'host/screen_recorder_unittest.cc', 1705 'host/screen_recorder_unittest.cc',
1704 'host/server_log_entry_unittest.cc', 1706 'host/server_log_entry_unittest.cc',
1705 'host/test_key_pair.h', 1707 'host/test_key_pair.h',
1706 'host/video_frame_capturer_helper_unittest.cc', 1708 'host/video_frame_capturer_helper_unittest.cc',
1707 'host/video_frame_capturer_mac_unittest.cc', 1709 'host/video_frame_capturer_mac_unittest.cc',
1708 'host/video_frame_capturer_unittest.cc', 1710 'host/video_frame_capturer_unittest.cc',
1711 'jingle_glue/chromium_socket_factory_unittest.cc',
1709 'jingle_glue/fake_signal_strategy.cc', 1712 'jingle_glue/fake_signal_strategy.cc',
1710 'jingle_glue/fake_signal_strategy.h', 1713 'jingle_glue/fake_signal_strategy.h',
1711 'jingle_glue/iq_sender_unittest.cc', 1714 'jingle_glue/iq_sender_unittest.cc',
1712 'jingle_glue/jingle_thread_unittest.cc', 1715 'jingle_glue/jingle_thread_unittest.cc',
1713 'jingle_glue/mock_objects.cc', 1716 'jingle_glue/mock_objects.cc',
1714 'jingle_glue/mock_objects.h', 1717 'jingle_glue/mock_objects.h',
1715 'protocol/authenticator_test_base.cc', 1718 'protocol/authenticator_test_base.cc',
1716 'protocol/authenticator_test_base.h', 1719 'protocol/authenticator_test_base.h',
1717 'protocol/clipboard_echo_filter_unittest.cc', 1720 'protocol/clipboard_echo_filter_unittest.cc',
1718 'protocol/connection_tester.cc', 1721 'protocol/connection_tester.cc',
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
1774 '../base/allocator/allocator.gyp:allocator', 1777 '../base/allocator/allocator.gyp:allocator',
1775 ], 1778 ],
1776 }, 1779 },
1777 ], 1780 ],
1778 ], 1781 ],
1779 }], 1782 }],
1780 ], # end of 'conditions' 1783 ], # end of 'conditions'
1781 }, # end of target 'remoting_unittests' 1784 }, # end of target 'remoting_unittests'
1782 ], # end of targets 1785 ], # end of targets
1783 } 1786 }
OLDNEW
« no previous file with comments | « remoting/jingle_glue/chromium_socket_factory_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698