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

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, 5 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
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 1464 matching lines...) Expand 10 before | Expand all | Expand 10 after
1475 '../jingle/jingle.gyp:jingle_glue', 1475 '../jingle/jingle.gyp:jingle_glue',
1476 '../jingle/jingle.gyp:notifier', 1476 '../jingle/jingle.gyp:notifier',
1477 '../third_party/libjingle/libjingle.gyp:libjingle', 1477 '../third_party/libjingle/libjingle.gyp:libjingle',
1478 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', 1478 '../third_party/libjingle/libjingle.gyp:libjingle_p2p',
1479 ], 1479 ],
1480 'export_dependent_settings': [ 1480 'export_dependent_settings': [
1481 '../third_party/libjingle/libjingle.gyp:libjingle', 1481 '../third_party/libjingle/libjingle.gyp:libjingle',
1482 '../third_party/libjingle/libjingle.gyp:libjingle_p2p', 1482 '../third_party/libjingle/libjingle.gyp:libjingle_p2p',
1483 ], 1483 ],
1484 'sources': [ 1484 'sources': [
1485 'jingle_glue/chromium_socket_factory.cc',
1486 'jingle_glue/chromium_socket_factory.h',
1485 'jingle_glue/iq_sender.cc', 1487 'jingle_glue/iq_sender.cc',
1486 'jingle_glue/iq_sender.h', 1488 'jingle_glue/iq_sender.h',
1487 'jingle_glue/javascript_signal_strategy.cc', 1489 'jingle_glue/javascript_signal_strategy.cc',
1488 'jingle_glue/javascript_signal_strategy.h', 1490 'jingle_glue/javascript_signal_strategy.h',
1489 'jingle_glue/jingle_info_request.cc', 1491 'jingle_glue/jingle_info_request.cc',
1490 'jingle_glue/jingle_info_request.h', 1492 'jingle_glue/jingle_info_request.h',
1491 'jingle_glue/jingle_thread.cc', 1493 'jingle_glue/jingle_thread.cc',
1492 'jingle_glue/jingle_thread.h', 1494 'jingle_glue/jingle_thread.h',
1493 'jingle_glue/signal_strategy.h', 1495 'jingle_glue/signal_strategy.h',
1494 'jingle_glue/ssl_adapter.h', 1496 'jingle_glue/ssl_adapter.h',
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after
1702 'host/host_mock_objects.cc', 1704 'host/host_mock_objects.cc',
1703 'host/host_mock_objects.h', 1705 'host/host_mock_objects.h',
1704 'host/json_host_config_unittest.cc', 1706 'host/json_host_config_unittest.cc',
1705 'host/log_to_server_unittest.cc', 1707 'host/log_to_server_unittest.cc',
1706 'host/pin_hash_unittest.cc', 1708 'host/pin_hash_unittest.cc',
1707 'host/register_support_host_request_unittest.cc', 1709 'host/register_support_host_request_unittest.cc',
1708 'host/remote_input_filter_unittest.cc', 1710 'host/remote_input_filter_unittest.cc',
1709 'host/screen_recorder_unittest.cc', 1711 'host/screen_recorder_unittest.cc',
1710 'host/server_log_entry_unittest.cc', 1712 'host/server_log_entry_unittest.cc',
1711 'host/test_key_pair.h', 1713 'host/test_key_pair.h',
1714 'jingle_glue/chromium_socket_factory_unittest.cc',
1712 'jingle_glue/fake_signal_strategy.cc', 1715 'jingle_glue/fake_signal_strategy.cc',
1713 'jingle_glue/fake_signal_strategy.h', 1716 'jingle_glue/fake_signal_strategy.h',
1714 'jingle_glue/iq_sender_unittest.cc', 1717 'jingle_glue/iq_sender_unittest.cc',
1715 'jingle_glue/jingle_thread_unittest.cc', 1718 'jingle_glue/jingle_thread_unittest.cc',
1716 'jingle_glue/mock_objects.cc', 1719 'jingle_glue/mock_objects.cc',
1717 'jingle_glue/mock_objects.h', 1720 'jingle_glue/mock_objects.h',
1718 'protocol/authenticator_test_base.cc', 1721 'protocol/authenticator_test_base.cc',
1719 'protocol/authenticator_test_base.h', 1722 'protocol/authenticator_test_base.h',
1720 'protocol/clipboard_echo_filter_unittest.cc', 1723 'protocol/clipboard_echo_filter_unittest.cc',
1721 'protocol/connection_tester.cc', 1724 'protocol/connection_tester.cc',
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
1777 '../base/allocator/allocator.gyp:allocator', 1780 '../base/allocator/allocator.gyp:allocator',
1778 ], 1781 ],
1779 }, 1782 },
1780 ], 1783 ],
1781 ], 1784 ],
1782 }], 1785 }],
1783 ], # end of 'conditions' 1786 ], # end of 'conditions'
1784 }, # end of target 'remoting_unittests' 1787 }, # end of target 'remoting_unittests'
1785 ], # end of targets 1788 ], # end of targets
1786 } 1789 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698