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

Side by Side Diff: remoting/remoting.gyp

Issue 10790075: Rename Capturer to VideoFrameCapturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased. Created 8 years, 5 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/host/video_frame_capturer_win.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 # 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 1092 matching lines...) Expand 10 before | Expand all | Expand 10 after
1103 'remoting_jingle_glue', 1103 'remoting_jingle_glue',
1104 'remoting_protocol', 1104 'remoting_protocol',
1105 'differ_block', 1105 'differ_block',
1106 '../crypto/crypto.gyp:crypto', 1106 '../crypto/crypto.gyp:crypto',
1107 ], 1107 ],
1108 'sources': [ 1108 'sources': [
1109 'host/audio_capturer.cc', 1109 'host/audio_capturer.cc',
1110 'host/audio_capturer.h', 1110 'host/audio_capturer.h',
1111 'host/audio_scheduler.cc', 1111 'host/audio_scheduler.cc',
1112 'host/audio_scheduler.h', 1112 'host/audio_scheduler.h',
1113 'host/capturer.h',
1114 'host/capturer_helper.cc',
1115 'host/capturer_helper.h',
1116 'host/capturer_fake.cc',
1117 'host/capturer_fake.h',
1118 'host/capturer_linux.cc',
1119 'host/capturer_mac.mm',
1120 'host/capturer_win.cc',
1121 'host/capture_scheduler.cc', 1113 'host/capture_scheduler.cc',
1122 'host/capture_scheduler.h', 1114 'host/capture_scheduler.h',
1123 'host/chromoting_host.cc', 1115 'host/chromoting_host.cc',
1124 'host/chromoting_host.h', 1116 'host/chromoting_host.h',
1125 'host/chromoting_host_context.cc', 1117 'host/chromoting_host_context.cc',
1126 'host/chromoting_host_context.h', 1118 'host/chromoting_host_context.h',
1127 'host/client_session.cc', 1119 'host/client_session.cc',
1128 'host/client_session.h', 1120 'host/client_session.h',
1129 'host/clipboard.h', 1121 'host/clipboard.h',
1130 'host/clipboard_linux.cc', 1122 'host/clipboard_linux.cc',
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
1210 'host/scoped_thread_desktop_win.cc', 1202 'host/scoped_thread_desktop_win.cc',
1211 'host/scoped_thread_desktop_win.h', 1203 'host/scoped_thread_desktop_win.h',
1212 'host/ui_strings.cc', 1204 'host/ui_strings.cc',
1213 'host/ui_strings.h', 1205 'host/ui_strings.h',
1214 'host/url_request_context.cc', 1206 'host/url_request_context.cc',
1215 'host/url_request_context.h', 1207 'host/url_request_context.h',
1216 'host/user_authenticator.h', 1208 'host/user_authenticator.h',
1217 'host/user_authenticator_linux.cc', 1209 'host/user_authenticator_linux.cc',
1218 'host/user_authenticator_mac.cc', 1210 'host/user_authenticator_mac.cc',
1219 'host/user_authenticator_win.cc', 1211 'host/user_authenticator_win.cc',
1212 'host/video_frame_capturer.h',
1213 'host/video_frame_capturer_fake.cc',
1214 'host/video_frame_capturer_fake.h',
1215 'host/video_frame_capturer_helper.cc',
1216 'host/video_frame_capturer_helper.h',
1217 'host/video_frame_capturer_linux.cc',
1218 'host/video_frame_capturer_mac.mm',
1219 'host/video_frame_capturer_win.cc',
1220 'host/vlog_net_log.cc', 1220 'host/vlog_net_log.cc',
1221 'host/vlog_net_log.h', 1221 'host/vlog_net_log.h',
1222 'host/x_server_pixel_buffer.cc', 1222 'host/x_server_pixel_buffer.cc',
1223 'host/x_server_pixel_buffer.h', 1223 'host/x_server_pixel_buffer.h',
1224 ], 1224 ],
1225 'conditions': [ 1225 'conditions': [
1226 ['OS=="linux"', { 1226 ['OS=="linux"', {
1227 'link_settings': { 1227 'link_settings': {
1228 'libraries': [ 1228 'libraries': [
1229 '-lX11', 1229 '-lX11',
(...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after
1677 'base/compound_buffer_unittest.cc', 1677 'base/compound_buffer_unittest.cc',
1678 'base/compressor_zlib_unittest.cc', 1678 'base/compressor_zlib_unittest.cc',
1679 'base/decoder_vp8_unittest.cc', 1679 'base/decoder_vp8_unittest.cc',
1680 'base/decompressor_zlib_unittest.cc', 1680 'base/decompressor_zlib_unittest.cc',
1681 'base/encode_decode_unittest.cc', 1681 'base/encode_decode_unittest.cc',
1682 'base/encoder_vp8_unittest.cc', 1682 'base/encoder_vp8_unittest.cc',
1683 'base/encoder_row_based_unittest.cc', 1683 'base/encoder_row_based_unittest.cc',
1684 'base/util_unittest.cc', 1684 'base/util_unittest.cc',
1685 'client/key_event_mapper_unittest.cc', 1685 'client/key_event_mapper_unittest.cc',
1686 'client/plugin/mac_key_event_processor_unittest.cc', 1686 'client/plugin/mac_key_event_processor_unittest.cc',
1687 'host/capturer_helper_unittest.cc',
1688 'host/capturer_mac_unittest.cc',
1689 'host/capturer_unittest.cc',
1690 'host/chromoting_host_context_unittest.cc', 1687 'host/chromoting_host_context_unittest.cc',
1691 'host/chromoting_host_unittest.cc', 1688 'host/chromoting_host_unittest.cc',
1692 'host/client_session_unittest.cc', 1689 'host/client_session_unittest.cc',
1693 'host/differ_block_unittest.cc', 1690 'host/differ_block_unittest.cc',
1694 'host/differ_unittest.cc', 1691 'host/differ_unittest.cc',
1695 'host/heartbeat_sender_unittest.cc', 1692 'host/heartbeat_sender_unittest.cc',
1696 'host/host_key_pair_unittest.cc', 1693 'host/host_key_pair_unittest.cc',
1697 'host/host_mock_objects.cc', 1694 'host/host_mock_objects.cc',
1698 'host/host_mock_objects.h', 1695 'host/host_mock_objects.h',
1699 'host/json_host_config_unittest.cc', 1696 'host/json_host_config_unittest.cc',
1700 'host/log_to_server_unittest.cc', 1697 'host/log_to_server_unittest.cc',
1701 'host/pin_hash_unittest.cc', 1698 'host/pin_hash_unittest.cc',
1702 'host/register_support_host_request_unittest.cc', 1699 'host/register_support_host_request_unittest.cc',
1703 'host/remote_input_filter_unittest.cc', 1700 'host/remote_input_filter_unittest.cc',
1704 'host/screen_recorder_unittest.cc', 1701 'host/screen_recorder_unittest.cc',
1705 'host/server_log_entry_unittest.cc', 1702 'host/server_log_entry_unittest.cc',
1706 'host/test_key_pair.h', 1703 'host/test_key_pair.h',
1704 'host/video_frame_capturer_helper_unittest.cc',
1705 'host/video_frame_capturer_mac_unittest.cc',
1706 'host/video_frame_capturer_unittest.cc',
1707 'jingle_glue/fake_signal_strategy.cc', 1707 'jingle_glue/fake_signal_strategy.cc',
1708 'jingle_glue/fake_signal_strategy.h', 1708 'jingle_glue/fake_signal_strategy.h',
1709 'jingle_glue/iq_sender_unittest.cc', 1709 'jingle_glue/iq_sender_unittest.cc',
1710 'jingle_glue/jingle_thread_unittest.cc', 1710 'jingle_glue/jingle_thread_unittest.cc',
1711 'jingle_glue/mock_objects.cc', 1711 'jingle_glue/mock_objects.cc',
1712 'jingle_glue/mock_objects.h', 1712 'jingle_glue/mock_objects.h',
1713 'protocol/authenticator_test_base.cc', 1713 'protocol/authenticator_test_base.cc',
1714 'protocol/authenticator_test_base.h', 1714 'protocol/authenticator_test_base.h',
1715 'protocol/clipboard_echo_filter_unittest.cc', 1715 'protocol/clipboard_echo_filter_unittest.cc',
1716 'protocol/connection_tester.cc', 1716 'protocol/connection_tester.cc',
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
1772 '../base/allocator/allocator.gyp:allocator', 1772 '../base/allocator/allocator.gyp:allocator',
1773 ], 1773 ],
1774 }, 1774 },
1775 ], 1775 ],
1776 ], 1776 ],
1777 }], 1777 }],
1778 ], # end of 'conditions' 1778 ], # end of 'conditions'
1779 }, # end of target 'remoting_unittests' 1779 }, # end of target 'remoting_unittests'
1780 ], # end of targets 1780 ], # end of targets
1781 } 1781 }
OLDNEW
« no previous file with comments | « remoting/host/video_frame_capturer_win.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698