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

Side by Side Diff: remoting/remoting.gyp

Issue 7038053: Implementation of SecureP2PSocket (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: test for retry Created 9 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
OLDNEW
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 a consistent MIME-type independent of branding. 10 # Use a consistent MIME-type independent of branding.
(...skipping 610 matching lines...) Expand 10 before | Expand all | Expand 10 after
621 'protocol/rtp_reader.cc', 621 'protocol/rtp_reader.cc',
622 'protocol/rtp_reader.h', 622 'protocol/rtp_reader.h',
623 'protocol/rtp_utils.cc', 623 'protocol/rtp_utils.cc',
624 'protocol/rtp_utils.h', 624 'protocol/rtp_utils.h',
625 'protocol/rtp_video_reader.cc', 625 'protocol/rtp_video_reader.cc',
626 'protocol/rtp_video_reader.h', 626 'protocol/rtp_video_reader.h',
627 'protocol/rtp_video_writer.cc', 627 'protocol/rtp_video_writer.cc',
628 'protocol/rtp_video_writer.h', 628 'protocol/rtp_video_writer.h',
629 'protocol/rtp_writer.cc', 629 'protocol/rtp_writer.cc',
630 'protocol/rtp_writer.h', 630 'protocol/rtp_writer.h',
631 'protocol/secure_p2p_socket.cc',
632 'protocol/secure_p2p_socket.h',
631 'protocol/session.h', 633 'protocol/session.h',
632 'protocol/session_config.cc', 634 'protocol/session_config.cc',
633 'protocol/session_config.h', 635 'protocol/session_config.h',
634 'protocol/session_manager.h', 636 'protocol/session_manager.h',
635 'protocol/socket_reader_base.cc', 637 'protocol/socket_reader_base.cc',
636 'protocol/socket_reader_base.h', 638 'protocol/socket_reader_base.h',
637 'protocol/socket_wrapper.cc', 639 'protocol/socket_wrapper.cc',
638 'protocol/socket_wrapper.h', 640 'protocol/socket_wrapper.h',
639 'protocol/util.cc', 641 'protocol/util.cc',
640 'protocol/util.h', 642 'protocol/util.h',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
760 'protocol/connection_to_client_unittest.cc', 762 'protocol/connection_to_client_unittest.cc',
761 'protocol/fake_session.cc', 763 'protocol/fake_session.cc',
762 'protocol/fake_session.h', 764 'protocol/fake_session.h',
763 'protocol/jingle_session_unittest.cc', 765 'protocol/jingle_session_unittest.cc',
764 'protocol/message_decoder_unittest.cc', 766 'protocol/message_decoder_unittest.cc',
765 'protocol/message_reader_unittest.cc', 767 'protocol/message_reader_unittest.cc',
766 'protocol/protocol_mock_objects.cc', 768 'protocol/protocol_mock_objects.cc',
767 'protocol/protocol_mock_objects.h', 769 'protocol/protocol_mock_objects.h',
768 'protocol/rtp_video_reader_unittest.cc', 770 'protocol/rtp_video_reader_unittest.cc',
769 'protocol/rtp_video_writer_unittest.cc', 771 'protocol/rtp_video_writer_unittest.cc',
772 'protocol/secure_p2p_socket_unittest.cc',
770 'protocol/session_manager_pair.cc', 773 'protocol/session_manager_pair.cc',
771 'protocol/session_manager_pair.h', 774 'protocol/session_manager_pair.h',
772 'run_all_unittests.cc', 775 'run_all_unittests.cc',
773 ], 776 ],
774 'conditions': [ 777 'conditions': [
775 ['toolkit_uses_gtk == 1', { 778 ['toolkit_uses_gtk == 1', {
776 'dependencies': [ 779 'dependencies': [
777 '../app/app.gyp:app_base', 780 '../app/app.gyp:app_base',
778 # Needed for the following #include chain: 781 # Needed for the following #include chain:
779 # base/run_all_unittests.cc 782 # base/run_all_unittests.cc
780 # ../base/test_suite.h 783 # ../base/test_suite.h
781 # gtk/gtk.h 784 # gtk/gtk.h
782 '../build/linux/system.gyp:gtk', 785 '../build/linux/system.gyp:gtk',
786 '../build/linux/system.gyp:ssl',
783 ], 787 ],
784 'conditions': [ 788 'conditions': [
785 [ 'linux_use_tcmalloc==1', { 789 [ 'linux_use_tcmalloc==1', {
786 'dependencies': [ 790 'dependencies': [
787 '../base/allocator/allocator.gyp:allocator', 791 '../base/allocator/allocator.gyp:allocator',
788 ], 792 ],
789 }, 793 },
790 ], 794 ],
791 ], 795 ],
792 }], 796 }],
793 ['target_arch=="arm"', { 797 ['target_arch=="arm"', {
794 'sources!': [ 798 'sources!': [
795 'base/decoder_vp8_unittest.cc', 799 'base/decoder_vp8_unittest.cc',
796 'base/encoder_vp8_unittest.cc', 800 'base/encoder_vp8_unittest.cc',
797 ], 801 ],
798 }], 802 }],
799 ], # end of 'conditions' 803 ], # end of 'conditions'
800 }, # end of target 'remoting_unittests' 804 }, # end of target 'remoting_unittests'
801 ], # end of targets 805 ], # end of targets
802 } 806 }
803 807
804 # Local Variables: 808 # Local Variables:
805 # tab-width:2 809 # tab-width:2
806 # indent-tabs-mode:nil 810 # indent-tabs-mode:nil
807 # End: 811 # End:
808 # vim: set expandtab tabstop=2 shiftwidth=2: 812 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« remoting/protocol/secure_p2p_socket.cc ('K') | « remoting/protocol/secure_p2p_socket_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698