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

Side by Side Diff: remoting/remoting.gyp

Issue 11470028: Move screen capturers to remoting/capturer. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years 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/win/session_event_executor.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 10
(...skipping 228 matching lines...) Expand 10 before | Expand all | Expand 10 after
239 'REMOTING_MULTI_PROCESS', 239 'REMOTING_MULTI_PROCESS',
240 ], 240 ],
241 }], 241 }],
242 ], 242 ],
243 }, 243 },
244 244
245 'conditions': [ 245 'conditions': [
246 ['enable_remoting_host==1', { 246 ['enable_remoting_host==1', {
247 'targets': [ 247 'targets': [
248 { 248 {
249 'target_name': 'differ_block', 249 'target_name': 'remoting_screen_capturer',
250 'type': 'static_library', 250 'type': 'static_library',
251 'variables': { 'enable_wexit_time_destructors': 1, }, 251 'variables': { 'enable_wexit_time_destructors': 1, },
252 'dependencies': [
253 '../skia/skia.gyp:skia',
254 ],
255 'sources': [
256 'capturer/capture_data.cc',
257 'capturer/capture_data.h',
258 'capturer/shared_buffer.cc',
259 'capturer/shared_buffer.h',
260 'capturer/shared_buffer_factory.h',
261 'capturer/differ.cc',
262 'capturer/differ.h',
263 'capturer/differ_block.cc',
264 'capturer/differ_block.h',
265 'capturer/linux/x_server_pixel_buffer.cc',
266 'capturer/linux/x_server_pixel_buffer.h',
267 'capturer/mac/scoped_pixel_buffer_object.cc',
268 'capturer/mac/scoped_pixel_buffer_object.h',
269 'capturer/mouse_cursor_shape.cc',
270 'capturer/mouse_cursor_shape.h',
271 'capturer/video_frame.cc',
272 'capturer/video_frame.h',
273 'capturer/video_frame_capturer.h',
274 'capturer/video_frame_capturer_fake.cc',
275 'capturer/video_frame_capturer_fake.h',
276 'capturer/video_frame_capturer_helper.cc',
277 'capturer/video_frame_capturer_helper.h',
278 'capturer/video_frame_capturer_linux.cc',
279 'capturer/video_frame_capturer_mac.mm',
280 'capturer/video_frame_capturer_win.cc',
281 'capturer/video_frame_queue.cc',
282 'capturer/video_frame_queue.h',
283 'capturer/win/desktop.cc',
284 'capturer/win/desktop.h',
285 'capturer/win/scoped_thread_desktop.cc',
286 'capturer/win/scoped_thread_desktop.h',
287 ],
252 'conditions': [ 288 'conditions': [
253 [ 'target_arch == "ia32" or target_arch == "x64"', { 289 [ 'target_arch == "ia32" or target_arch == "x64"', {
254 'dependencies': [ 290 'dependencies': [
255 'differ_block_sse2', 291 'differ_block_sse2',
256 ], 292 ],
257 }], 293 }],
294 ['toolkit_uses_gtk==1', {
295 'dependencies': [
296 '../build/linux/system.gyp:gtk',
297 ],
298 }, { # else toolkit_uses_gtk!=1
299 'sources!': [
300 '*_gtk.cc',
301 ],
302 }],
258 ], 303 ],
259 'sources': [ 304 }, # end of target remoting_screen_capturer
260 'host/differ_block.cc',
261 'host/differ_block.h',
262 ],
263 }, # end of target differ_block
264 305
265 { 306 {
266 'target_name': 'remoting_host', 307 'target_name': 'remoting_host',
267 'type': 'static_library', 308 'type': 'static_library',
268 'variables': { 'enable_wexit_time_destructors': 1, }, 309 'variables': { 'enable_wexit_time_destructors': 1, },
269 'dependencies': [ 310 'dependencies': [
270 'remoting_base', 311 'remoting_base',
271 'remoting_jingle_glue', 312 'remoting_jingle_glue',
272 'remoting_protocol', 313 'remoting_protocol',
273 'differ_block', 314 'remoting_screen_capturer',
274 '../crypto/crypto.gyp:crypto', 315 '../crypto/crypto.gyp:crypto',
275 '../google_apis/google_apis.gyp:google_apis', 316 '../google_apis/google_apis.gyp:google_apis',
276 '../ipc/ipc.gyp:ipc', 317 '../ipc/ipc.gyp:ipc',
277 ], 318 ],
278 'defines': [ 319 'defines': [
279 'VERSION=<(version_full)', 320 'VERSION=<(version_full)',
280 ], 321 ],
281 'sources': [ 322 'sources': [
282 'host/audio_capturer.cc', 323 'host/audio_capturer.cc',
283 'host/audio_capturer.h', 324 'host/audio_capturer.h',
(...skipping 28 matching lines...) Expand all
312 'host/desktop_environment.h', 353 'host/desktop_environment.h',
313 'host/desktop_environment_factory.cc', 354 'host/desktop_environment_factory.cc',
314 'host/desktop_environment_factory.h', 355 'host/desktop_environment_factory.h',
315 'host/desktop_resizer.h', 356 'host/desktop_resizer.h',
316 'host/desktop_resizer_linux.cc', 357 'host/desktop_resizer_linux.cc',
317 'host/desktop_resizer_win.cc', 358 'host/desktop_resizer_win.cc',
318 'host/desktop_resizer_mac.cc', 359 'host/desktop_resizer_mac.cc',
319 'host/desktop_session_connector.h', 360 'host/desktop_session_connector.h',
320 'host/desktop_session_proxy.cc', 361 'host/desktop_session_proxy.cc',
321 'host/desktop_session_proxy.h', 362 'host/desktop_session_proxy.h',
322 'host/differ.cc',
323 'host/differ.h',
324 'host/disconnect_window.h', 363 'host/disconnect_window.h',
325 'host/disconnect_window_gtk.cc', 364 'host/disconnect_window_gtk.cc',
326 'host/disconnect_window_mac.h', 365 'host/disconnect_window_mac.h',
327 'host/disconnect_window_mac.mm', 366 'host/disconnect_window_mac.mm',
328 'host/disconnect_window_win.cc', 367 'host/disconnect_window_win.cc',
329 'host/dns_blackhole_checker.cc', 368 'host/dns_blackhole_checker.cc',
330 'host/dns_blackhole_checker.h', 369 'host/dns_blackhole_checker.h',
331 'host/event_executor.h', 370 'host/event_executor.h',
332 'host/event_executor_fake.cc', 371 'host/event_executor_fake.cc',
333 'host/event_executor_fake.h', 372 'host/event_executor_fake.h',
(...skipping 29 matching lines...) Expand all
363 'host/it2me_host_user_interface.cc', 402 'host/it2me_host_user_interface.cc',
364 'host/it2me_host_user_interface.h', 403 'host/it2me_host_user_interface.h',
365 'host/json_host_config.cc', 404 'host/json_host_config.cc',
366 'host/json_host_config.h', 405 'host/json_host_config.h',
367 'host/linux/audio_pipe_reader.cc', 406 'host/linux/audio_pipe_reader.cc',
368 'host/linux/audio_pipe_reader.h', 407 'host/linux/audio_pipe_reader.h',
369 'host/linux/x11_util.cc', 408 'host/linux/x11_util.cc',
370 'host/linux/x11_util.h', 409 'host/linux/x11_util.h',
371 'host/linux/x_server_clipboard.cc', 410 'host/linux/x_server_clipboard.cc',
372 'host/linux/x_server_clipboard.h', 411 'host/linux/x_server_clipboard.h',
373 'host/linux/x_server_pixel_buffer.cc',
374 'host/linux/x_server_pixel_buffer.h',
375 'host/local_input_monitor.h', 412 'host/local_input_monitor.h',
376 'host/local_input_monitor_linux.cc', 413 'host/local_input_monitor_linux.cc',
377 'host/local_input_monitor_mac.mm', 414 'host/local_input_monitor_mac.mm',
378 'host/local_input_monitor_thread_linux.cc', 415 'host/local_input_monitor_thread_linux.cc',
379 'host/local_input_monitor_thread_linux.h', 416 'host/local_input_monitor_thread_linux.h',
380 'host/local_input_monitor_win.cc', 417 'host/local_input_monitor_win.cc',
381 'host/log_to_server.cc', 418 'host/log_to_server.cc',
382 'host/log_to_server.h', 419 'host/log_to_server.h',
383 'host/mac/scoped_pixel_buffer_object.cc',
384 'host/mac/scoped_pixel_buffer_object.h',
385 'host/mouse_clamping_filter.cc', 420 'host/mouse_clamping_filter.cc',
386 'host/mouse_clamping_filter.h', 421 'host/mouse_clamping_filter.h',
387 'host/mouse_move_observer.h', 422 'host/mouse_move_observer.h',
388 'host/network_settings.h', 423 'host/network_settings.h',
389 'host/pam_authorization_factory_posix.cc', 424 'host/pam_authorization_factory_posix.cc',
390 'host/pam_authorization_factory_posix.h', 425 'host/pam_authorization_factory_posix.h',
391 'host/pin_hash.cc', 426 'host/pin_hash.cc',
392 'host/pin_hash.h', 427 'host/pin_hash.h',
393 'host/policy_hack/policy_watcher.h', 428 'host/policy_hack/policy_watcher.h',
394 'host/policy_hack/policy_watcher.cc', 429 'host/policy_hack/policy_watcher.cc',
(...skipping 16 matching lines...) Expand all
411 'host/session_manager_factory.h', 446 'host/session_manager_factory.h',
412 'host/signaling_connector.cc', 447 'host/signaling_connector.cc',
413 'host/signaling_connector.h', 448 'host/signaling_connector.h',
414 'host/ui_strings.cc', 449 'host/ui_strings.cc',
415 'host/ui_strings.h', 450 'host/ui_strings.h',
416 'host/url_request_context.cc', 451 'host/url_request_context.cc',
417 'host/url_request_context.h', 452 'host/url_request_context.h',
418 'host/usage_stats_consent.h', 453 'host/usage_stats_consent.h',
419 'host/usage_stats_consent_mac.cc', 454 'host/usage_stats_consent_mac.cc',
420 'host/usage_stats_consent_win.cc', 455 'host/usage_stats_consent_win.cc',
421 'host/video_frame.cc',
422 'host/video_frame.h',
423 'host/video_frame_capturer.h',
424 'host/video_frame_capturer_fake.cc',
425 'host/video_frame_capturer_fake.h',
426 'host/video_frame_capturer_helper.cc',
427 'host/video_frame_capturer_helper.h',
428 'host/video_frame_capturer_linux.cc',
429 'host/video_frame_capturer_mac.mm',
430 'host/video_frame_capturer_win.cc',
431 'host/video_frame_queue.cc',
432 'host/video_frame_queue.h',
433 'host/video_scheduler.cc', 456 'host/video_scheduler.cc',
434 'host/video_scheduler.h', 457 'host/video_scheduler.h',
435 'host/vlog_net_log.cc', 458 'host/vlog_net_log.cc',
436 'host/vlog_net_log.h', 459 'host/vlog_net_log.h',
437 'host/win/desktop.cc',
438 'host/win/desktop.h',
439 'host/win/launch_process_with_token.cc', 460 'host/win/launch_process_with_token.cc',
440 'host/win/launch_process_with_token.h', 461 'host/win/launch_process_with_token.h',
441 'host/win/omaha.cc', 462 'host/win/omaha.cc',
442 'host/win/omaha.h', 463 'host/win/omaha.h',
443 'host/win/scoped_thread_desktop.cc',
444 'host/win/scoped_thread_desktop.h',
445 'host/win/security_descriptor.cc', 464 'host/win/security_descriptor.cc',
446 'host/win/security_descriptor.h', 465 'host/win/security_descriptor.h',
447 'host/win/session_desktop_environment_factory.cc', 466 'host/win/session_desktop_environment_factory.cc',
448 'host/win/session_desktop_environment_factory.h', 467 'host/win/session_desktop_environment_factory.h',
449 'host/win/session_event_executor.cc', 468 'host/win/session_event_executor.cc',
450 'host/win/session_event_executor.h', 469 'host/win/session_event_executor.h',
451 'host/win/window_station_and_desktop.cc', 470 'host/win/window_station_and_desktop.cc',
452 'host/win/window_station_and_desktop.h', 471 'host/win/window_station_and_desktop.h',
453 ], 472 ],
454 'conditions': [ 473 'conditions': [
(...skipping 802 matching lines...) Expand 10 before | Expand all | Expand 10 after
1257 '../net/net.gyp:net', 1276 '../net/net.gyp:net',
1258 'remoting_base', 1277 'remoting_base',
1259 'remoting_breakpad', 1278 'remoting_breakpad',
1260 'remoting_host', 1279 'remoting_host',
1261 'remoting_host_logging', 1280 'remoting_host_logging',
1262 'remoting_version_resources', 1281 'remoting_version_resources',
1263 ], 1282 ],
1264 'sources': [ 1283 'sources': [
1265 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_daemon_version.rc', 1284 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_daemon_version.rc',
1266 'base/scoped_sc_handle_win.h', 1285 'base/scoped_sc_handle_win.h',
1286 'capturer/win/desktop.cc',
1287 'capturer/win/desktop.h',
1288 'capturer/win/scoped_thread_desktop.cc',
1289 'capturer/win/scoped_thread_desktop.h',
1267 'host/chromoting_messages.cc', 1290 'host/chromoting_messages.cc',
1268 'host/chromoting_messages.h', 1291 'host/chromoting_messages.h',
1269 'host/config_file_watcher.cc', 1292 'host/config_file_watcher.cc',
1270 'host/config_file_watcher.h', 1293 'host/config_file_watcher.h',
1271 'host/daemon_process.cc', 1294 'host/daemon_process.cc',
1272 'host/daemon_process.h', 1295 'host/daemon_process.h',
1273 'host/daemon_process_win.cc', 1296 'host/daemon_process_win.cc',
1274 'host/desktop_session.cc', 1297 'host/desktop_session.cc',
1275 'host/desktop_session.h', 1298 'host/desktop_session.h',
1276 'host/desktop_session_win.cc', 1299 'host/desktop_session_win.cc',
1277 'host/desktop_session_win.h', 1300 'host/desktop_session_win.h',
1278 'host/host_exit_codes.h', 1301 'host/host_exit_codes.h',
1279 'host/ipc_constants.cc', 1302 'host/ipc_constants.cc',
1280 'host/ipc_constants.h', 1303 'host/ipc_constants.h',
1281 'host/sas_injector.h', 1304 'host/sas_injector.h',
1282 'host/sas_injector_win.cc', 1305 'host/sas_injector_win.cc',
1283 'host/win/desktop.cc',
1284 'host/win/desktop.h',
1285 'host/win/host_service.cc', 1306 'host/win/host_service.cc',
1286 'host/win/host_service.h', 1307 'host/win/host_service.h',
1287 'host/win/host_service.rc', 1308 'host/win/host_service.rc',
1288 'host/win/host_service_resource.h', 1309 'host/win/host_service_resource.h',
1289 'host/win/omaha.cc', 1310 'host/win/omaha.cc',
1290 'host/win/omaha.h', 1311 'host/win/omaha.h',
1291 'host/win/scoped_thread_desktop.cc',
1292 'host/win/scoped_thread_desktop.h',
1293 'host/win/unprivileged_process_delegate.cc', 1312 'host/win/unprivileged_process_delegate.cc',
1294 'host/win/unprivileged_process_delegate.h', 1313 'host/win/unprivileged_process_delegate.h',
1295 'host/win/worker_process_launcher.cc', 1314 'host/win/worker_process_launcher.cc',
1296 'host/win/worker_process_launcher.h', 1315 'host/win/worker_process_launcher.h',
1297 'host/win/wts_console_monitor.h', 1316 'host/win/wts_console_monitor.h',
1298 'host/win/wts_console_observer.h', 1317 'host/win/wts_console_observer.h',
1299 'host/win/wts_console_session_process_driver.cc', 1318 'host/win/wts_console_session_process_driver.cc',
1300 'host/win/wts_console_session_process_driver.h', 1319 'host/win/wts_console_session_process_driver.h',
1301 'host/win/wts_session_process_delegate.cc', 1320 'host/win/wts_session_process_delegate.cc',
1302 'host/win/wts_session_process_delegate.h', 1321 'host/win/wts_session_process_delegate.h',
(...skipping 566 matching lines...) Expand 10 before | Expand all | Expand 10 after
1869 # This target needs a hard dependency because dependent targets 1888 # This target needs a hard dependency because dependent targets
1870 # depend on chromotocol_proto_lib for headers. 1889 # depend on chromotocol_proto_lib for headers.
1871 'hard_dependency': 1, 1890 'hard_dependency': 1,
1872 'sources': [ 1891 'sources': [
1873 'base/auto_thread.cc', 1892 'base/auto_thread.cc',
1874 'base/auto_thread.h', 1893 'base/auto_thread.h',
1875 'base/auto_thread_task_runner.cc', 1894 'base/auto_thread_task_runner.cc',
1876 'base/auto_thread_task_runner.h', 1895 'base/auto_thread_task_runner.h',
1877 'base/auth_token_util.cc', 1896 'base/auth_token_util.cc',
1878 'base/auth_token_util.h', 1897 'base/auth_token_util.h',
1879 'base/capture_data.cc',
1880 'base/capture_data.h',
1881 'base/compound_buffer.cc', 1898 'base/compound_buffer.cc',
1882 'base/compound_buffer.h', 1899 'base/compound_buffer.h',
1883 'base/constants.cc', 1900 'base/constants.cc',
1884 'base/constants.h', 1901 'base/constants.h',
1885 'base/plugin_thread_task_runner.cc', 1902 'base/plugin_thread_task_runner.cc',
1886 'base/plugin_thread_task_runner.h', 1903 'base/plugin_thread_task_runner.h',
1887 'base/rate_counter.cc', 1904 'base/rate_counter.cc',
1888 'base/rate_counter.h', 1905 'base/rate_counter.h',
1889 'base/resources.cc', 1906 'base/resources.cc',
1890 'base/resources.h', 1907 'base/resources.h',
1891 'base/running_average.cc', 1908 'base/running_average.cc',
1892 'base/running_average.h', 1909 'base/running_average.h',
1893 'base/shared_buffer.cc',
1894 'base/shared_buffer.h',
1895 'base/shared_buffer_factory.h',
1896 'base/socket_reader.cc', 1910 'base/socket_reader.cc',
1897 'base/socket_reader.h', 1911 'base/socket_reader.h',
1898 'base/stoppable.cc', 1912 'base/stoppable.cc',
1899 'base/stoppable.h', 1913 'base/stoppable.h',
1900 'base/typed_buffer.h', 1914 'base/typed_buffer.h',
1901 'base/util.cc', 1915 'base/util.cc',
1902 'base/util.h', 1916 'base/util.h',
1903 'codec/audio_decoder.cc', 1917 'codec/audio_decoder.cc',
1904 'codec/audio_decoder.h', 1918 'codec/audio_decoder.h',
1905 'codec/audio_decoder_opus.cc', 1919 'codec/audio_decoder_opus.cc',
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
2122 'target_name': 'differ_block_sse2', 2136 'target_name': 'differ_block_sse2',
2123 'type': 'static_library', 2137 'type': 'static_library',
2124 'conditions': [ 2138 'conditions': [
2125 [ 'os_posix == 1 and OS != "mac"', { 2139 [ 'os_posix == 1 and OS != "mac"', {
2126 'cflags': [ 2140 'cflags': [
2127 '-msse2', 2141 '-msse2',
2128 ], 2142 ],
2129 }], 2143 }],
2130 ], 2144 ],
2131 'sources': [ 2145 'sources': [
2132 'host/differ_block_sse2.cc', 2146 'capturer/differ_block_sse2.cc',
2147 'capturer/differ_block_sse2.h',
2133 ], 2148 ],
2134 }, # end of target differ_block_sse2 2149 }, # end of target differ_block_sse2
2135 2150
2136 # Remoting unit tests 2151 # Remoting unit tests
2137 { 2152 {
2138 'target_name': 'remoting_unittests', 2153 'target_name': 'remoting_unittests',
2139 'type': 'executable', 2154 'type': 'executable',
2140 'dependencies': [ 2155 'dependencies': [
2141 'remoting_base', 2156 'remoting_base',
2142 'remoting_resources', 2157 'remoting_resources',
(...skipping 16 matching lines...) Expand all
2159 ], 2174 ],
2160 'defines': [ 2175 'defines': [
2161 'VERSION=<(version_full)', 2176 'VERSION=<(version_full)',
2162 ], 2177 ],
2163 'include_dirs': [ 2178 'include_dirs': [
2164 '../testing/gmock/include', 2179 '../testing/gmock/include',
2165 ], 2180 ],
2166 'sources': [ 2181 'sources': [
2167 '../chrome/test/base/run_all_remoting_unittests.cc', 2182 '../chrome/test/base/run_all_remoting_unittests.cc',
2168 'base/auth_token_util_unittest.cc', 2183 'base/auth_token_util_unittest.cc',
2184 'base/auto_thread_task_runner_unittest.cc',
2169 'base/auto_thread_unittest.cc', 2185 'base/auto_thread_unittest.cc',
2170 'base/auto_thread_task_runner_unittest.cc',
2171 'base/breakpad_win_unittest.cc', 2186 'base/breakpad_win_unittest.cc',
2172 'base/compound_buffer_unittest.cc', 2187 'base/compound_buffer_unittest.cc',
2173 'base/resources_unittest.cc', 2188 'base/resources_unittest.cc',
2174 'base/shared_buffer_unittest.cc',
2175 'base/typed_buffer_unittest.cc', 2189 'base/typed_buffer_unittest.cc',
2176 'base/util_unittest.cc', 2190 'base/util_unittest.cc',
2191 'capturer/video_capturer_mock_objects.cc',
2192 'capturer/video_capturer_mock_objects.h',
2193 'capturer/differ_block_unittest.cc',
2194 'capturer/differ_unittest.cc',
2195 'capturer/shared_buffer_unittest.cc',
2196 'capturer/video_frame_capturer_helper_unittest.cc',
2197 'capturer/video_frame_capturer_mac_unittest.cc',
2198 'capturer/video_frame_capturer_unittest.cc',
2177 'client/audio_player_unittest.cc', 2199 'client/audio_player_unittest.cc',
2178 'client/key_event_mapper_unittest.cc', 2200 'client/key_event_mapper_unittest.cc',
2179 'client/plugin/mac_key_event_processor_unittest.cc', 2201 'client/plugin/mac_key_event_processor_unittest.cc',
2180 'codec/audio_encoder_opus_unittest.cc', 2202 'codec/audio_encoder_opus_unittest.cc',
2181 'codec/codec_test.cc', 2203 'codec/codec_test.cc',
2182 'codec/codec_test.h', 2204 'codec/codec_test.h',
2183 'codec/video_decoder_vp8_unittest.cc', 2205 'codec/video_decoder_vp8_unittest.cc',
2184 'codec/video_encoder_verbatim_unittest.cc', 2206 'codec/video_encoder_verbatim_unittest.cc',
2185 'codec/video_encoder_vp8_unittest.cc', 2207 'codec/video_encoder_vp8_unittest.cc',
2186 'host/audio_capturer_win_unittest.cc', 2208 'host/audio_capturer_win_unittest.cc',
2187 'host/branding.cc', 2209 'host/branding.cc',
2188 'host/branding.h', 2210 'host/branding.h',
2189 'host/chromoting_host_context_unittest.cc', 2211 'host/chromoting_host_context_unittest.cc',
2190 'host/chromoting_host_unittest.cc', 2212 'host/chromoting_host_unittest.cc',
2191 'host/client_session_unittest.cc', 2213 'host/client_session_unittest.cc',
2192 'host/config_file_watcher.cc', 2214 'host/config_file_watcher.cc',
2193 'host/config_file_watcher.h', 2215 'host/config_file_watcher.h',
2194 'host/daemon_process.cc', 2216 'host/daemon_process.cc',
2195 'host/daemon_process.h', 2217 'host/daemon_process.h',
2196 'host/daemon_process_unittest.cc', 2218 'host/daemon_process_unittest.cc',
2197 'host/desktop_process.cc', 2219 'host/desktop_process.cc',
2198 'host/desktop_process.h', 2220 'host/desktop_process.h',
2199 'host/desktop_process_unittest.cc', 2221 'host/desktop_process_unittest.cc',
2200 'host/desktop_session.cc', 2222 'host/desktop_session.cc',
2201 'host/desktop_session.h', 2223 'host/desktop_session.h',
2202 'host/desktop_session_agent.cc', 2224 'host/desktop_session_agent.cc',
2203 'host/desktop_session_agent.h', 2225 'host/desktop_session_agent.h',
2204 'host/desktop_session_agent_posix.cc', 2226 'host/desktop_session_agent_posix.cc',
2205 'host/desktop_session_agent_win.cc', 2227 'host/desktop_session_agent_win.cc',
2206 'host/differ_block_unittest.cc',
2207 'host/differ_unittest.cc',
2208 'host/heartbeat_sender_unittest.cc', 2228 'host/heartbeat_sender_unittest.cc',
2209 'host/host_key_pair_unittest.cc', 2229 'host/host_key_pair_unittest.cc',
2210 'host/host_mock_objects.cc', 2230 'host/host_mock_objects.cc',
2211 'host/host_mock_objects.h', 2231 'host/host_mock_objects.h',
2212 'host/json_host_config_unittest.cc', 2232 'host/json_host_config_unittest.cc',
2213 'host/linux/x_server_clipboard_unittest.cc', 2233 'host/linux/x_server_clipboard_unittest.cc',
2214 'host/local_input_monitor_unittest.cc', 2234 'host/local_input_monitor_unittest.cc',
2215 'host/log_to_server_unittest.cc', 2235 'host/log_to_server_unittest.cc',
2216 'host/pin_hash_unittest.cc', 2236 'host/pin_hash_unittest.cc',
2217 'host/policy_hack/fake_policy_watcher.cc', 2237 'host/policy_hack/fake_policy_watcher.cc',
2218 'host/policy_hack/fake_policy_watcher.h', 2238 'host/policy_hack/fake_policy_watcher.h',
2219 'host/policy_hack/mock_policy_callback.cc', 2239 'host/policy_hack/mock_policy_callback.cc',
2220 'host/policy_hack/mock_policy_callback.h', 2240 'host/policy_hack/mock_policy_callback.h',
2221 'host/policy_hack/policy_watcher_unittest.cc', 2241 'host/policy_hack/policy_watcher_unittest.cc',
2222 'host/register_support_host_request_unittest.cc', 2242 'host/register_support_host_request_unittest.cc',
2223 'host/remote_input_filter_unittest.cc', 2243 'host/remote_input_filter_unittest.cc',
2224 'host/resizing_host_observer_unittest.cc', 2244 'host/resizing_host_observer_unittest.cc',
2225 'host/server_log_entry_unittest.cc', 2245 'host/server_log_entry_unittest.cc',
2226 'host/setup/oauth_helper_unittest.cc', 2246 'host/setup/oauth_helper_unittest.cc',
2227 'host/setup/pin_validator_unittest.cc', 2247 'host/setup/pin_validator_unittest.cc',
2228 'host/test_key_pair.h', 2248 'host/test_key_pair.h',
2229 'host/video_frame_capturer_helper_unittest.cc',
2230 'host/video_frame_capturer_mac_unittest.cc',
2231 'host/video_frame_capturer_unittest.cc',
2232 'host/video_scheduler_unittest.cc', 2249 'host/video_scheduler_unittest.cc',
2233 'host/win/worker_process_launcher.cc', 2250 'host/win/worker_process_launcher.cc',
2234 'host/win/worker_process_launcher.h', 2251 'host/win/worker_process_launcher.h',
2235 'host/win/worker_process_launcher_unittest.cc', 2252 'host/win/worker_process_launcher_unittest.cc',
2236 'jingle_glue/chromium_socket_factory_unittest.cc', 2253 'jingle_glue/chromium_socket_factory_unittest.cc',
2237 'jingle_glue/fake_signal_strategy.cc', 2254 'jingle_glue/fake_signal_strategy.cc',
2238 'jingle_glue/fake_signal_strategy.h', 2255 'jingle_glue/fake_signal_strategy.h',
2239 'jingle_glue/iq_sender_unittest.cc', 2256 'jingle_glue/iq_sender_unittest.cc',
2240 'jingle_glue/mock_objects.cc', 2257 'jingle_glue/mock_objects.cc',
2241 'jingle_glue/mock_objects.h', 2258 'jingle_glue/mock_objects.h',
(...skipping 12 matching lines...) Expand all
2254 'protocol/fake_session.cc', 2271 'protocol/fake_session.cc',
2255 'protocol/fake_session.h', 2272 'protocol/fake_session.h',
2256 'protocol/input_event_tracker_unittest.cc', 2273 'protocol/input_event_tracker_unittest.cc',
2257 'protocol/input_filter_unittest.cc', 2274 'protocol/input_filter_unittest.cc',
2258 'protocol/jingle_messages_unittest.cc', 2275 'protocol/jingle_messages_unittest.cc',
2259 'protocol/jingle_session_unittest.cc', 2276 'protocol/jingle_session_unittest.cc',
2260 'protocol/message_decoder_unittest.cc', 2277 'protocol/message_decoder_unittest.cc',
2261 'protocol/message_reader_unittest.cc', 2278 'protocol/message_reader_unittest.cc',
2262 'protocol/mouse_input_filter_unittest.cc', 2279 'protocol/mouse_input_filter_unittest.cc',
2263 'protocol/negotiating_authenticator_unittest.cc', 2280 'protocol/negotiating_authenticator_unittest.cc',
2281 'protocol/ppapi_module_stub.cc',
2264 'protocol/protocol_mock_objects.cc', 2282 'protocol/protocol_mock_objects.cc',
2265 'protocol/protocol_mock_objects.h', 2283 'protocol/protocol_mock_objects.h',
2266 'protocol/ppapi_module_stub.cc',
2267 'protocol/ssl_hmac_channel_authenticator_unittest.cc', 2284 'protocol/ssl_hmac_channel_authenticator_unittest.cc',
2268 'protocol/v2_authenticator_unittest.cc', 2285 'protocol/v2_authenticator_unittest.cc',
2269 ], 2286 ],
2270 'conditions': [ 2287 'conditions': [
2271 [ 'OS=="win"', { 2288 [ 'OS=="win"', {
2272 'include_dirs': [ 2289 'include_dirs': [
2273 '../breakpad/src', 2290 '../breakpad/src',
2274 ], 2291 ],
2275 'link_settings': { 2292 'link_settings': {
2276 'libraries': [ 2293 'libraries': [
(...skipping 28 matching lines...) Expand all
2305 'webapp/format_iq.gtestjs', 2322 'webapp/format_iq.gtestjs',
2306 'webapp/format_iq.js', 2323 'webapp/format_iq.js',
2307 ], 2324 ],
2308 }], 2325 }],
2309 ['chromeos != 0', { 2326 ['chromeos != 0', {
2310 'dependencies!': [ 2327 'dependencies!': [
2311 'remoting_host', 2328 'remoting_host',
2312 'remoting_host_setup_base', 2329 'remoting_host_setup_base',
2313 ], 2330 ],
2314 'sources/': [ 2331 'sources/': [
2332 ['exclude', 'capturer/*'],
2333 ['exclude', 'codec/*'],
2315 ['exclude', 'host/*'], 2334 ['exclude', 'host/*'],
2316 ] 2335 ]
2317 }], 2336 }],
2318 ['toolkit_uses_gtk == 1', { 2337 ['toolkit_uses_gtk == 1', {
2319 'dependencies': [ 2338 'dependencies': [
2320 # Needed for the following #include chain: 2339 # Needed for the following #include chain:
2321 # base/run_all_unittests.cc 2340 # base/run_all_unittests.cc
2322 # ../base/test_suite.h 2341 # ../base/test_suite.h
2323 # gtk/gtk.h 2342 # gtk/gtk.h
2324 '../build/linux/system.gyp:gtk', 2343 '../build/linux/system.gyp:gtk',
2325 '../build/linux/system.gyp:ssl', 2344 '../build/linux/system.gyp:ssl',
2326 ], 2345 ],
2327 'conditions': [ 2346 'conditions': [
2328 [ 'linux_use_tcmalloc==1', { 2347 [ 'linux_use_tcmalloc==1', {
2329 'dependencies': [ 2348 'dependencies': [
2330 '../base/allocator/allocator.gyp:allocator', 2349 '../base/allocator/allocator.gyp:allocator',
2331 ], 2350 ],
2332 }, 2351 },
2333 ], 2352 ],
2334 ], 2353 ],
2335 }], # end of 'toolkit_uses_gtk == 1' 2354 }], # end of 'toolkit_uses_gtk == 1'
2336 ], # end of 'conditions' 2355 ], # end of 'conditions'
2337 }, # end of target 'remoting_unittests' 2356 }, # end of target 'remoting_unittests'
2338 ], # end of targets 2357 ], # end of targets
2339 } 2358 }
OLDNEW
« no previous file with comments | « remoting/host/win/session_event_executor.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698