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

Side by Side Diff: remoting/remoting.gyp

Issue 13983010: Use webrtc::DesktopCapturer for screen capturer implementation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: q Created 7 years, 8 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 10
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 'type': 'static_library', 290 'type': 'static_library',
291 'variables': { 'enable_wexit_time_destructors': 1, }, 291 'variables': { 'enable_wexit_time_destructors': 1, },
292 'dependencies': [ 292 'dependencies': [
293 'remoting_base', 293 'remoting_base',
294 'remoting_jingle_glue', 294 'remoting_jingle_glue',
295 'remoting_protocol', 295 'remoting_protocol',
296 '../crypto/crypto.gyp:crypto', 296 '../crypto/crypto.gyp:crypto',
297 '../google_apis/google_apis.gyp:google_apis', 297 '../google_apis/google_apis.gyp:google_apis',
298 '../media/media.gyp:media', 298 '../media/media.gyp:media',
299 '../ipc/ipc.gyp:ipc', 299 '../ipc/ipc.gyp:ipc',
300 '../third_party/webrtc/modules/modules.gyp:desktop_capture',
300 ], 301 ],
301 'defines': [ 302 'defines': [
302 'VERSION=<(version_full)', 303 'VERSION=<(version_full)',
303 ], 304 ],
304 'sources': [ 305 'sources': [
305 'host/audio_capturer.cc', 306 'host/audio_capturer.cc',
306 'host/audio_capturer.h', 307 'host/audio_capturer.h',
307 'host/audio_capturer_linux.cc', 308 'host/audio_capturer_linux.cc',
308 'host/audio_capturer_linux.h', 309 'host/audio_capturer_linux.h',
309 'host/audio_capturer_mac.cc', 310 'host/audio_capturer_mac.cc',
310 'host/audio_capturer_win.cc', 311 'host/audio_capturer_win.cc',
311 'host/audio_capturer_win.h', 312 'host/audio_capturer_win.h',
312 'host/audio_scheduler.cc', 313 'host/audio_scheduler.cc',
313 'host/audio_scheduler.h', 314 'host/audio_scheduler.h',
314 'host/audio_silence_detector.cc', 315 'host/audio_silence_detector.cc',
315 'host/audio_silence_detector.h', 316 'host/audio_silence_detector.h',
316 'host/basic_desktop_environment.cc', 317 'host/basic_desktop_environment.cc',
317 'host/basic_desktop_environment.h', 318 'host/basic_desktop_environment.h',
318 'host/capture_scheduler.cc', 319 'host/capture_scheduler.cc',
319 'host/capture_scheduler.h', 320 'host/capture_scheduler.h',
320 'host/chromoting_host.cc', 321 'host/chromoting_host.cc',
321 'host/chromoting_host.h', 322 'host/chromoting_host.h',
322 'host/chromoting_host_context.cc', 323 'host/chromoting_host_context.cc',
323 'host/chromoting_host_context.h', 324 'host/chromoting_host_context.h',
324 'host/chromoting_messages.cc', 325 'host/chromoting_messages.cc',
325 'host/chromoting_messages.h', 326 'host/chromoting_messages.h',
327 'host/chromoting_param_traits.cc',
alexeypa (please no reviews) 2013/04/26 21:33:58 Both files are missing from this CL.
Sergey Ulanov 2013/05/07 22:25:50 Done.
328 'host/chromoting_param_traits.h',
326 'host/client_session.cc', 329 'host/client_session.cc',
327 'host/client_session.h', 330 'host/client_session.h',
328 'host/client_session_control.h', 331 'host/client_session_control.h',
329 'host/clipboard.h', 332 'host/clipboard.h',
330 'host/clipboard_linux.cc', 333 'host/clipboard_linux.cc',
331 'host/clipboard_mac.mm', 334 'host/clipboard_mac.mm',
332 'host/clipboard_win.cc', 335 'host/clipboard_win.cc',
333 'host/config_file_watcher.cc', 336 'host/config_file_watcher.cc',
334 'host/config_file_watcher.h', 337 'host/config_file_watcher.h',
335 'host/constants_mac.cc', 338 'host/constants_mac.cc',
(...skipping 11 matching lines...) Expand all
347 'host/desktop_session_proxy.cc', 350 'host/desktop_session_proxy.cc',
348 'host/desktop_session_proxy.h', 351 'host/desktop_session_proxy.h',
349 'host/disconnect_window_gtk.cc', 352 'host/disconnect_window_gtk.cc',
350 'host/disconnect_window_mac.h', 353 'host/disconnect_window_mac.h',
351 'host/disconnect_window_mac.mm', 354 'host/disconnect_window_mac.mm',
352 'host/disconnect_window_win.cc', 355 'host/disconnect_window_win.cc',
353 'host/dns_blackhole_checker.cc', 356 'host/dns_blackhole_checker.cc',
354 'host/dns_blackhole_checker.h', 357 'host/dns_blackhole_checker.h',
355 'host/heartbeat_sender.cc', 358 'host/heartbeat_sender.cc',
356 'host/heartbeat_sender.h', 359 'host/heartbeat_sender.h',
357 'host/host_change_notification_listener.cc', 360 'host/host_change_notification_listener.cc',
358 'host/host_change_notification_listener.h', 361 'host/host_change_notification_listener.h',
359 'host/host_config.cc', 362 'host/host_config.cc',
360 'host/host_config.h', 363 'host/host_config.h',
361 'host/host_exit_codes.h', 364 'host/host_exit_codes.h',
362 'host/host_port_allocator.cc', 365 'host/host_port_allocator.cc',
363 'host/host_port_allocator.h', 366 'host/host_port_allocator.h',
364 'host/host_secret.cc', 367 'host/host_secret.cc',
365 'host/host_secret.h', 368 'host/host_secret.h',
366 'host/host_status_monitor.h', 369 'host/host_status_monitor.h',
367 'host/host_status_observer.h', 370 'host/host_status_observer.h',
(...skipping 1012 matching lines...) Expand 10 before | Expand all | Expand 10 after
1380 'remoting_me2me_host_static', 1383 'remoting_me2me_host_static',
1381 'remoting_protocol', 1384 'remoting_protocol',
1382 'remoting_version_resources', 1385 'remoting_version_resources',
1383 ], 1386 ],
1384 'sources': [ 1387 'sources': [
1385 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib.rc', 1388 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib.rc',
1386 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/remoting_host_messages.rc' , 1389 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/remoting_host_messages.rc' ,
1387 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_core_version.rc', 1390 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_core_version.rc',
1388 'host/chromoting_messages.cc', 1391 'host/chromoting_messages.cc',
1389 'host/chromoting_messages.h', 1392 'host/chromoting_messages.h',
1393 'host/chromoting_param_traits.cc',
alexeypa (please no reviews) 2013/04/26 21:33:58 chromoting_param_traits.* are already in remoting_
Sergey Ulanov 2013/05/07 22:25:50 Done.
1394 'host/chromoting_param_traits.h',
1390 'host/config_file_watcher.cc', 1395 'host/config_file_watcher.cc',
1391 'host/config_file_watcher.h', 1396 'host/config_file_watcher.h',
1392 'host/daemon_process.cc', 1397 'host/daemon_process.cc',
1393 'host/daemon_process.h', 1398 'host/daemon_process.h',
1394 'host/daemon_process_win.cc', 1399 'host/daemon_process_win.cc',
1395 'host/desktop_process.cc', 1400 'host/desktop_process.cc',
1396 'host/desktop_process.h', 1401 'host/desktop_process.h',
1397 'host/desktop_process_main.cc', 1402 'host/desktop_process_main.cc',
1398 'host/desktop_session.cc', 1403 'host/desktop_session.cc',
1399 'host/desktop_session.h', 1404 'host/desktop_session.h',
(...skipping 1100 matching lines...) Expand 10 before | Expand all | Expand 10 after
2500 'remoting_base', 2505 'remoting_base',
2501 'remoting_breakpad', 2506 'remoting_breakpad',
2502 'remoting_client', 2507 'remoting_client',
2503 'remoting_client_plugin', 2508 'remoting_client_plugin',
2504 'remoting_host', 2509 'remoting_host',
2505 'remoting_host_event_logger', 2510 'remoting_host_event_logger',
2506 'remoting_host_setup_base', 2511 'remoting_host_setup_base',
2507 'remoting_jingle_glue', 2512 'remoting_jingle_glue',
2508 'remoting_protocol', 2513 'remoting_protocol',
2509 'remoting_resources', 2514 'remoting_resources',
2515 '../third_party/webrtc/modules/modules.gyp:desktop_capture',
2510 ], 2516 ],
2511 'defines': [ 2517 'defines': [
2512 'VERSION=<(version_full)', 2518 'VERSION=<(version_full)',
2513 ], 2519 ],
2514 'include_dirs': [ 2520 'include_dirs': [
2515 '../testing/gmock/include', 2521 '../testing/gmock/include',
2516 ], 2522 ],
2517 'sources': [ 2523 'sources': [
2518 '../chrome/test/base/run_all_remoting_unittests.cc', 2524 '../chrome/test/base/run_all_remoting_unittests.cc',
2519 'base/auth_token_util_unittest.cc', 2525 'base/auth_token_util_unittest.cc',
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
2696 '../base/allocator/allocator.gyp:allocator', 2702 '../base/allocator/allocator.gyp:allocator',
2697 ], 2703 ],
2698 }, 2704 },
2699 ], 2705 ],
2700 ], 2706 ],
2701 }], # end of 'toolkit_uses_gtk == 1' 2707 }], # end of 'toolkit_uses_gtk == 1'
2702 ], # end of 'conditions' 2708 ], # end of 'conditions'
2703 }, # end of target 'remoting_unittests' 2709 }, # end of target 'remoting_unittests'
2704 ], # end of targets 2710 ], # end of targets
2705 } 2711 }
OLDNEW
« remoting/host/video_scheduler.cc ('K') | « remoting/host/video_scheduler_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698