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

Side by Side Diff: remoting/remoting.gyp

Issue 8604001: Move SSL layer initialization into ChannelAuthenticator implementations. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: - Created 9 years, 1 month 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 consistent strings across all platforms. Note that the plugin name 10 # Use consistent strings across all platforms. Note that the plugin name
(...skipping 715 matching lines...) Expand 10 before | Expand all | Expand 10 after
726 'remoting_base', 726 'remoting_base',
727 'remoting_jingle_glue', 727 'remoting_jingle_glue',
728 '../crypto/crypto.gyp:crypto', 728 '../crypto/crypto.gyp:crypto',
729 '../jingle/jingle.gyp:jingle_glue', 729 '../jingle/jingle.gyp:jingle_glue',
730 '../net/net.gyp:net', 730 '../net/net.gyp:net',
731 ], 731 ],
732 'export_dependent_settings': [ 732 'export_dependent_settings': [
733 'remoting_jingle_glue', 733 'remoting_jingle_glue',
734 ], 734 ],
735 'sources': [ 735 'sources': [
736 'protocol/auth_token_utils.cc', 736 'protocol/auth_util.cc',
737 'protocol/auth_token_utils.h', 737 'protocol/auth_util.h',
738 'protocol/authenticator.h', 738 'protocol/authenticator.h',
739 'protocol/buffered_socket_writer.cc', 739 'protocol/buffered_socket_writer.cc',
740 'protocol/buffered_socket_writer.h', 740 'protocol/buffered_socket_writer.h',
741 'protocol/channel_authenticator.cc',
742 'protocol/channel_authenticator.h', 741 'protocol/channel_authenticator.h',
743 'protocol/client_control_dispatcher.cc', 742 'protocol/client_control_dispatcher.cc',
744 'protocol/client_control_dispatcher.h', 743 'protocol/client_control_dispatcher.h',
745 'protocol/client_event_dispatcher.cc', 744 'protocol/client_event_dispatcher.cc',
746 'protocol/client_event_dispatcher.h', 745 'protocol/client_event_dispatcher.h',
747 'protocol/client_stub.h', 746 'protocol/client_stub.h',
748 'protocol/connection_to_client.cc', 747 'protocol/connection_to_client.cc',
749 'protocol/connection_to_client.h', 748 'protocol/connection_to_client.h',
750 'protocol/connection_to_host.cc', 749 'protocol/connection_to_host.cc',
751 'protocol/connection_to_host.h', 750 'protocol/connection_to_host.h',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
794 'protocol/rtp_video_reader.cc', 793 'protocol/rtp_video_reader.cc',
795 'protocol/rtp_video_reader.h', 794 'protocol/rtp_video_reader.h',
796 'protocol/rtp_video_writer.cc', 795 'protocol/rtp_video_writer.cc',
797 'protocol/rtp_video_writer.h', 796 'protocol/rtp_video_writer.h',
798 'protocol/rtp_writer.cc', 797 'protocol/rtp_writer.cc',
799 'protocol/rtp_writer.h', 798 'protocol/rtp_writer.h',
800 'protocol/session.h', 799 'protocol/session.h',
801 'protocol/session_config.cc', 800 'protocol/session_config.cc',
802 'protocol/session_config.h', 801 'protocol/session_config.h',
803 'protocol/session_manager.h', 802 'protocol/session_manager.h',
803 'protocol/simple_client_channel_authenticator.cc',
804 'protocol/simple_client_channel_authenticator.h',
805 'protocol/simple_host_channel_authenticator.cc',
806 'protocol/simple_host_channel_authenticator.h',
804 'protocol/socket_reader_base.cc', 807 'protocol/socket_reader_base.cc',
805 'protocol/socket_reader_base.h', 808 'protocol/socket_reader_base.h',
806 'protocol/transport_config.cc', 809 'protocol/transport_config.cc',
807 'protocol/transport_config.h', 810 'protocol/transport_config.h',
808 'protocol/util.cc', 811 'protocol/util.cc',
809 'protocol/util.h', 812 'protocol/util.h',
810 'protocol/video_reader.cc', 813 'protocol/video_reader.cc',
811 'protocol/video_reader.h', 814 'protocol/video_reader.h',
812 'protocol/video_stub.h', 815 'protocol/video_stub.h',
813 'protocol/video_writer.cc', 816 'protocol/video_writer.cc',
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after
937 '../base/allocator/allocator.gyp:allocator', 940 '../base/allocator/allocator.gyp:allocator',
938 ], 941 ],
939 }, 942 },
940 ], 943 ],
941 ], 944 ],
942 }], 945 }],
943 ], # end of 'conditions' 946 ], # end of 'conditions'
944 }, # end of target 'remoting_unittests' 947 }, # end of target 'remoting_unittests'
945 ], # end of targets 948 ], # end of targets
946 } 949 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698