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

Side by Side Diff: remoting/remoting.gyp

Issue 9465035: Move ClientSession's input logic into separate components. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move mouse state tracking to InputEventTracker. Created 8 years, 9 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 839 matching lines...) Expand 10 before | Expand all | Expand 10 after
850 'protocol/input_filter.h', 850 'protocol/input_filter.h',
851 'protocol/input_stub.h', 851 'protocol/input_stub.h',
852 'protocol/it2me_host_authenticator_factory.cc', 852 'protocol/it2me_host_authenticator_factory.cc',
853 'protocol/it2me_host_authenticator_factory.h', 853 'protocol/it2me_host_authenticator_factory.h',
854 'protocol/jingle_messages.cc', 854 'protocol/jingle_messages.cc',
855 'protocol/jingle_messages.h', 855 'protocol/jingle_messages.h',
856 'protocol/jingle_session.cc', 856 'protocol/jingle_session.cc',
857 'protocol/jingle_session.h', 857 'protocol/jingle_session.h',
858 'protocol/jingle_session_manager.cc', 858 'protocol/jingle_session_manager.cc',
859 'protocol/jingle_session_manager.h', 859 'protocol/jingle_session_manager.h',
860 'protocol/key_event_tracker.cc', 860 'protocol/input_event_tracker.cc',
861 'protocol/key_event_tracker.h', 861 'protocol/input_event_tracker.h',
862 'protocol/libjingle_transport_factory.cc', 862 'protocol/libjingle_transport_factory.cc',
863 'protocol/libjingle_transport_factory.h', 863 'protocol/libjingle_transport_factory.h',
864 'protocol/me2me_host_authenticator_factory.cc', 864 'protocol/me2me_host_authenticator_factory.cc',
865 'protocol/me2me_host_authenticator_factory.h', 865 'protocol/me2me_host_authenticator_factory.h',
866 'protocol/message_decoder.cc', 866 'protocol/message_decoder.cc',
867 'protocol/message_decoder.h', 867 'protocol/message_decoder.h',
868 'protocol/message_reader.cc', 868 'protocol/message_reader.cc',
869 'protocol/message_reader.h', 869 'protocol/message_reader.h',
870 'protocol/negotiating_authenticator.cc', 870 'protocol/negotiating_authenticator.cc',
871 'protocol/negotiating_authenticator.h', 871 'protocol/negotiating_authenticator.h',
(...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after
999 'protocol/authenticator_test_base.h', 999 'protocol/authenticator_test_base.h',
1000 'protocol/connection_tester.cc', 1000 'protocol/connection_tester.cc',
1001 'protocol/connection_tester.h', 1001 'protocol/connection_tester.h',
1002 'protocol/connection_to_client_unittest.cc', 1002 'protocol/connection_to_client_unittest.cc',
1003 'protocol/fake_authenticator.cc', 1003 'protocol/fake_authenticator.cc',
1004 'protocol/fake_authenticator.h', 1004 'protocol/fake_authenticator.h',
1005 'protocol/fake_session.cc', 1005 'protocol/fake_session.cc',
1006 'protocol/fake_session.h', 1006 'protocol/fake_session.h',
1007 'protocol/jingle_messages_unittest.cc', 1007 'protocol/jingle_messages_unittest.cc',
1008 'protocol/jingle_session_unittest.cc', 1008 'protocol/jingle_session_unittest.cc',
1009 'protocol/key_event_tracker_unittest.cc', 1009 'protocol/input_event_tracker_unittest.cc',
1010 'protocol/message_decoder_unittest.cc', 1010 'protocol/message_decoder_unittest.cc',
1011 'protocol/message_reader_unittest.cc', 1011 'protocol/message_reader_unittest.cc',
1012 'protocol/negotiating_authenticator_unittest.cc', 1012 'protocol/negotiating_authenticator_unittest.cc',
1013 'protocol/protocol_mock_objects.cc', 1013 'protocol/protocol_mock_objects.cc',
1014 'protocol/protocol_mock_objects.h', 1014 'protocol/protocol_mock_objects.h',
1015 'protocol/ppapi_module_stub.cc', 1015 'protocol/ppapi_module_stub.cc',
1016 'protocol/rtp_video_reader_unittest.cc', 1016 'protocol/rtp_video_reader_unittest.cc',
1017 'protocol/rtp_video_writer_unittest.cc', 1017 'protocol/rtp_video_writer_unittest.cc',
1018 'protocol/ssl_hmac_channel_authenticator_unittest.cc', 1018 'protocol/ssl_hmac_channel_authenticator_unittest.cc',
1019 'protocol/v1_authenticator_unittest.cc', 1019 'protocol/v1_authenticator_unittest.cc',
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
1060 '../base/allocator/allocator.gyp:allocator', 1060 '../base/allocator/allocator.gyp:allocator',
1061 ], 1061 ],
1062 }, 1062 },
1063 ], 1063 ],
1064 ], 1064 ],
1065 }], 1065 }],
1066 ], # end of 'conditions' 1066 ], # end of 'conditions'
1067 }, # end of target 'remoting_unittests' 1067 }, # end of target 'remoting_unittests'
1068 ], # end of targets 1068 ], # end of targets
1069 } 1069 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698