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

Side by Side Diff: remoting/remoting.gyp

Issue 10255007: Clamp events before they are sent to EventExecutors. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typo. Created 8 years, 7 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
« no previous file with comments | « remoting/protocol/mouse_input_filter_unittest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 { 6 {
7 'variables': { 7 'variables': {
8 # TODO(dmaclach): can we pick this up some other way? Right now it's 8 # TODO(dmaclach): can we pick this up some other way? Right now it's
9 # duplicated from chrome.gyp 9 # duplicated from chrome.gyp
10 'chromium_code': 1, 10 'chromium_code': 1,
(...skipping 1013 matching lines...) Expand 10 before | Expand all | Expand 10 after
1024 'client/client_config.cc', 1024 'client/client_config.cc',
1025 'client/client_config.h', 1025 'client/client_config.h',
1026 'client/client_context.cc', 1026 'client/client_context.cc',
1027 'client/client_context.h', 1027 'client/client_context.h',
1028 'client/frame_consumer.h', 1028 'client/frame_consumer.h',
1029 'client/frame_consumer_proxy.cc', 1029 'client/frame_consumer_proxy.cc',
1030 'client/frame_consumer_proxy.h', 1030 'client/frame_consumer_proxy.h',
1031 'client/frame_producer.h', 1031 'client/frame_producer.h',
1032 'client/key_event_mapper.cc', 1032 'client/key_event_mapper.cc',
1033 'client/key_event_mapper.h', 1033 'client/key_event_mapper.h',
1034 'client/mouse_input_filter.cc',
1035 'client/mouse_input_filter.h',
1036 'client/rectangle_update_decoder.cc', 1034 'client/rectangle_update_decoder.cc',
1037 'client/rectangle_update_decoder.h', 1035 'client/rectangle_update_decoder.h',
1038 ], 1036 ],
1039 }, # end of target 'remoting_client' 1037 }, # end of target 'remoting_client'
1040 1038
1041 { 1039 {
1042 'target_name': 'remoting_simple_host', 1040 'target_name': 'remoting_simple_host',
1043 'type': 'executable', 1041 'type': 'executable',
1044 'variables': { 'enable_wexit_time_destructors': 1, }, 1042 'variables': { 'enable_wexit_time_destructors': 1, },
1045 'dependencies': [ 1043 'dependencies': [
(...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after
1400 'protocol/connection_to_host.h', 1398 'protocol/connection_to_host.h',
1401 'protocol/content_description.cc', 1399 'protocol/content_description.cc',
1402 'protocol/content_description.h', 1400 'protocol/content_description.h',
1403 'protocol/errors.h', 1401 'protocol/errors.h',
1404 'protocol/host_control_dispatcher.cc', 1402 'protocol/host_control_dispatcher.cc',
1405 'protocol/host_control_dispatcher.h', 1403 'protocol/host_control_dispatcher.h',
1406 'protocol/host_event_dispatcher.cc', 1404 'protocol/host_event_dispatcher.cc',
1407 'protocol/host_event_dispatcher.h', 1405 'protocol/host_event_dispatcher.h',
1408 'protocol/host_event_stub.h', 1406 'protocol/host_event_stub.h',
1409 'protocol/host_stub.h', 1407 'protocol/host_stub.h',
1408 'protocol/input_event_tracker.cc',
1409 'protocol/input_event_tracker.h',
1410 'protocol/input_filter.cc', 1410 'protocol/input_filter.cc',
1411 'protocol/input_filter.h', 1411 'protocol/input_filter.h',
1412 'protocol/input_stub.h', 1412 'protocol/input_stub.h',
1413 'protocol/it2me_host_authenticator_factory.cc', 1413 'protocol/it2me_host_authenticator_factory.cc',
1414 'protocol/it2me_host_authenticator_factory.h', 1414 'protocol/it2me_host_authenticator_factory.h',
1415 'protocol/jingle_messages.cc', 1415 'protocol/jingle_messages.cc',
1416 'protocol/jingle_messages.h', 1416 'protocol/jingle_messages.h',
1417 'protocol/jingle_session.cc', 1417 'protocol/jingle_session.cc',
1418 'protocol/jingle_session.h', 1418 'protocol/jingle_session.h',
1419 'protocol/jingle_session_manager.cc', 1419 'protocol/jingle_session_manager.cc',
1420 'protocol/jingle_session_manager.h', 1420 'protocol/jingle_session_manager.h',
1421 'protocol/input_event_tracker.cc',
1422 'protocol/input_event_tracker.h',
1423 'protocol/libjingle_transport_factory.cc', 1421 'protocol/libjingle_transport_factory.cc',
1424 'protocol/libjingle_transport_factory.h', 1422 'protocol/libjingle_transport_factory.h',
1425 'protocol/me2me_host_authenticator_factory.cc', 1423 'protocol/me2me_host_authenticator_factory.cc',
1426 'protocol/me2me_host_authenticator_factory.h', 1424 'protocol/me2me_host_authenticator_factory.h',
1427 'protocol/message_decoder.cc', 1425 'protocol/message_decoder.cc',
1428 'protocol/message_decoder.h', 1426 'protocol/message_decoder.h',
1429 'protocol/message_reader.cc', 1427 'protocol/message_reader.cc',
1430 'protocol/message_reader.h', 1428 'protocol/message_reader.h',
1429 'protocol/mouse_input_filter.cc',
1430 'protocol/mouse_input_filter.h',
1431 'protocol/negotiating_authenticator.cc', 1431 'protocol/negotiating_authenticator.cc',
1432 'protocol/negotiating_authenticator.h', 1432 'protocol/negotiating_authenticator.h',
1433 'protocol/pepper_transport_factory.cc', 1433 'protocol/pepper_transport_factory.cc',
1434 'protocol/pepper_transport_factory.h', 1434 'protocol/pepper_transport_factory.h',
1435 'protocol/pepper_transport_socket_adapter.cc', 1435 'protocol/pepper_transport_socket_adapter.cc',
1436 'protocol/pepper_transport_socket_adapter.h', 1436 'protocol/pepper_transport_socket_adapter.h',
1437 'protocol/protobuf_video_reader.cc', 1437 'protocol/protobuf_video_reader.cc',
1438 'protocol/protobuf_video_reader.h', 1438 'protocol/protobuf_video_reader.h',
1439 'protocol/protobuf_video_writer.cc', 1439 'protocol/protobuf_video_writer.cc',
1440 'protocol/protobuf_video_writer.h', 1440 'protocol/protobuf_video_writer.h',
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after
1541 'base/compressor_zlib_unittest.cc', 1541 'base/compressor_zlib_unittest.cc',
1542 'base/decoder_vp8_unittest.cc', 1542 'base/decoder_vp8_unittest.cc',
1543 'base/decompressor_zlib_unittest.cc', 1543 'base/decompressor_zlib_unittest.cc',
1544 'base/encode_decode_unittest.cc', 1544 'base/encode_decode_unittest.cc',
1545 'base/encoder_vp8_unittest.cc', 1545 'base/encoder_vp8_unittest.cc',
1546 'base/encoder_row_based_unittest.cc', 1546 'base/encoder_row_based_unittest.cc',
1547 'base/base_mock_objects.cc', 1547 'base/base_mock_objects.cc',
1548 'base/base_mock_objects.h', 1548 'base/base_mock_objects.h',
1549 'base/util_unittest.cc', 1549 'base/util_unittest.cc',
1550 'client/key_event_mapper_unittest.cc', 1550 'client/key_event_mapper_unittest.cc',
1551 'client/mouse_input_filter_unittest.cc',
1552 'host/capturer_linux_unittest.cc', 1551 'host/capturer_linux_unittest.cc',
1553 'host/capturer_mac_unittest.cc', 1552 'host/capturer_mac_unittest.cc',
1554 'host/capturer_win_unittest.cc', 1553 'host/capturer_win_unittest.cc',
1555 'host/remote_input_filter_unittest.cc', 1554 'host/remote_input_filter_unittest.cc',
1556 'host/test_key_pair.h', 1555 'host/test_key_pair.h',
1557 'host/url_fetcher_unittest.cc', 1556 'host/url_fetcher_unittest.cc',
1558 'jingle_glue/fake_signal_strategy.cc', 1557 'jingle_glue/fake_signal_strategy.cc',
1559 'jingle_glue/fake_signal_strategy.h', 1558 'jingle_glue/fake_signal_strategy.h',
1560 'jingle_glue/iq_sender_unittest.cc', 1559 'jingle_glue/iq_sender_unittest.cc',
1561 'jingle_glue/jingle_thread_unittest.cc', 1560 'jingle_glue/jingle_thread_unittest.cc',
1562 'jingle_glue/mock_objects.cc', 1561 'jingle_glue/mock_objects.cc',
1563 'jingle_glue/mock_objects.h', 1562 'jingle_glue/mock_objects.h',
1564 'protocol/authenticator_test_base.cc', 1563 'protocol/authenticator_test_base.cc',
1565 'protocol/authenticator_test_base.h', 1564 'protocol/authenticator_test_base.h',
1566 'protocol/connection_tester.cc', 1565 'protocol/connection_tester.cc',
1567 'protocol/connection_tester.h', 1566 'protocol/connection_tester.h',
1568 'protocol/connection_to_client_unittest.cc', 1567 'protocol/connection_to_client_unittest.cc',
1569 'protocol/fake_authenticator.cc', 1568 'protocol/fake_authenticator.cc',
1570 'protocol/fake_authenticator.h', 1569 'protocol/fake_authenticator.h',
1571 'protocol/fake_session.cc', 1570 'protocol/fake_session.cc',
1572 'protocol/fake_session.h', 1571 'protocol/fake_session.h',
1573 'protocol/jingle_messages_unittest.cc', 1572 'protocol/jingle_messages_unittest.cc',
1574 'protocol/jingle_session_unittest.cc', 1573 'protocol/jingle_session_unittest.cc',
1575 'protocol/input_event_tracker_unittest.cc', 1574 'protocol/input_event_tracker_unittest.cc',
1576 'protocol/message_decoder_unittest.cc', 1575 'protocol/message_decoder_unittest.cc',
1577 'protocol/message_reader_unittest.cc', 1576 'protocol/message_reader_unittest.cc',
1577 'protocol/mouse_input_filter_unittest.cc',
1578 'protocol/negotiating_authenticator_unittest.cc', 1578 'protocol/negotiating_authenticator_unittest.cc',
1579 'protocol/protocol_mock_objects.cc', 1579 'protocol/protocol_mock_objects.cc',
1580 'protocol/protocol_mock_objects.h', 1580 'protocol/protocol_mock_objects.h',
1581 'protocol/ppapi_module_stub.cc', 1581 'protocol/ppapi_module_stub.cc',
1582 'protocol/rtp_video_reader_unittest.cc', 1582 'protocol/rtp_video_reader_unittest.cc',
1583 'protocol/rtp_video_writer_unittest.cc', 1583 'protocol/rtp_video_writer_unittest.cc',
1584 'protocol/ssl_hmac_channel_authenticator_unittest.cc', 1584 'protocol/ssl_hmac_channel_authenticator_unittest.cc',
1585 'protocol/v1_authenticator_unittest.cc', 1585 'protocol/v1_authenticator_unittest.cc',
1586 'protocol/v2_authenticator_unittest.cc', 1586 'protocol/v2_authenticator_unittest.cc',
1587 'run_all_unittests.cc', 1587 'run_all_unittests.cc',
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
1631 '../base/allocator/allocator.gyp:allocator', 1631 '../base/allocator/allocator.gyp:allocator',
1632 ], 1632 ],
1633 }, 1633 },
1634 ], 1634 ],
1635 ], 1635 ],
1636 }], 1636 }],
1637 ], # end of 'conditions' 1637 ], # end of 'conditions'
1638 }, # end of target 'remoting_unittests' 1638 }, # end of target 'remoting_unittests'
1639 ], # end of targets 1639 ], # end of targets
1640 } 1640 }
OLDNEW
« no previous file with comments | « remoting/protocol/mouse_input_filter_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698