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

Side by Side Diff: remoting/remoting.gyp

Issue 7038053: Implementation of SecureP2PSocket (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: use Encryptor CTR 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 599 matching lines...) Expand 10 before | Expand all | Expand 10 after
610 'protocol/rtp_reader.cc', 610 'protocol/rtp_reader.cc',
611 'protocol/rtp_reader.h', 611 'protocol/rtp_reader.h',
612 'protocol/rtp_utils.cc', 612 'protocol/rtp_utils.cc',
613 'protocol/rtp_utils.h', 613 'protocol/rtp_utils.h',
614 'protocol/rtp_video_reader.cc', 614 'protocol/rtp_video_reader.cc',
615 'protocol/rtp_video_reader.h', 615 'protocol/rtp_video_reader.h',
616 'protocol/rtp_video_writer.cc', 616 'protocol/rtp_video_writer.cc',
617 'protocol/rtp_video_writer.h', 617 'protocol/rtp_video_writer.h',
618 'protocol/rtp_writer.cc', 618 'protocol/rtp_writer.cc',
619 'protocol/rtp_writer.h', 619 'protocol/rtp_writer.h',
620 'protocol/secure_p2p_socket.cc',
621 'protocol/secure_p2p_socket.h',
620 'protocol/session.h', 622 'protocol/session.h',
621 'protocol/session_config.cc', 623 'protocol/session_config.cc',
622 'protocol/session_config.h', 624 'protocol/session_config.h',
623 'protocol/session_manager.h', 625 'protocol/session_manager.h',
624 'protocol/socket_reader_base.cc', 626 'protocol/socket_reader_base.cc',
625 'protocol/socket_reader_base.h', 627 'protocol/socket_reader_base.h',
626 'protocol/socket_wrapper.cc', 628 'protocol/socket_wrapper.cc',
627 'protocol/socket_wrapper.h', 629 'protocol/socket_wrapper.h',
628 'protocol/util.cc', 630 'protocol/util.cc',
629 'protocol/util.h', 631 'protocol/util.h',
(...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after
749 'protocol/connection_to_client_unittest.cc', 751 'protocol/connection_to_client_unittest.cc',
750 'protocol/fake_session.cc', 752 'protocol/fake_session.cc',
751 'protocol/fake_session.h', 753 'protocol/fake_session.h',
752 'protocol/jingle_session_unittest.cc', 754 'protocol/jingle_session_unittest.cc',
753 'protocol/message_decoder_unittest.cc', 755 'protocol/message_decoder_unittest.cc',
754 'protocol/message_reader_unittest.cc', 756 'protocol/message_reader_unittest.cc',
755 'protocol/protocol_mock_objects.cc', 757 'protocol/protocol_mock_objects.cc',
756 'protocol/protocol_mock_objects.h', 758 'protocol/protocol_mock_objects.h',
757 'protocol/rtp_video_reader_unittest.cc', 759 'protocol/rtp_video_reader_unittest.cc',
758 'protocol/rtp_video_writer_unittest.cc', 760 'protocol/rtp_video_writer_unittest.cc',
761 'protocol/secure_p2p_socket_unittest.cc',
759 'protocol/session_manager_pair.cc', 762 'protocol/session_manager_pair.cc',
760 'protocol/session_manager_pair.h', 763 'protocol/session_manager_pair.h',
761 'run_all_unittests.cc', 764 'run_all_unittests.cc',
762 ], 765 ],
763 'conditions': [ 766 'conditions': [
764 ['toolkit_uses_gtk == 1', { 767 ['toolkit_uses_gtk == 1', {
765 'dependencies': [ 768 'dependencies': [
766 '../app/app.gyp:app_base', 769 '../app/app.gyp:app_base',
767 # Needed for the following #include chain: 770 # Needed for the following #include chain:
768 # base/run_all_unittests.cc 771 # base/run_all_unittests.cc
769 # ../base/test_suite.h 772 # ../base/test_suite.h
770 # gtk/gtk.h 773 # gtk/gtk.h
771 '../build/linux/system.gyp:gtk', 774 '../build/linux/system.gyp:gtk',
775 '../build/linux/system.gyp:ssl',
772 ], 776 ],
773 'conditions': [ 777 'conditions': [
774 [ 'linux_use_tcmalloc==1', { 778 [ 'linux_use_tcmalloc==1', {
775 'dependencies': [ 779 'dependencies': [
776 '../base/allocator/allocator.gyp:allocator', 780 '../base/allocator/allocator.gyp:allocator',
777 ], 781 ],
778 }, 782 },
779 ], 783 ],
780 ], 784 ],
781 }], 785 }],
782 ['target_arch=="arm"', { 786 ['target_arch=="arm"', {
783 'sources!': [ 787 'sources!': [
784 'base/decoder_vp8_unittest.cc', 788 'base/decoder_vp8_unittest.cc',
785 'base/encoder_vp8_unittest.cc', 789 'base/encoder_vp8_unittest.cc',
786 ], 790 ],
787 }], 791 }],
788 ], # end of 'conditions' 792 ], # end of 'conditions'
789 }, # end of target 'remoting_unittests' 793 }, # end of target 'remoting_unittests'
790 ], # end of targets 794 ], # end of targets
791 } 795 }
792 796
793 # Local Variables: 797 # Local Variables:
794 # tab-width:2 798 # tab-width:2
795 # indent-tabs-mode:nil 799 # indent-tabs-mode:nil
796 # End: 800 # End:
797 # vim: set expandtab tabstop=2 shiftwidth=2: 801 # 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