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

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: Created 7 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/host/video_scheduler_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 # 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 282 matching lines...) Expand 10 before | Expand all | Expand 10 after
293 'type': 'static_library', 293 'type': 'static_library',
294 'variables': { 'enable_wexit_time_destructors': 1, }, 294 'variables': { 'enable_wexit_time_destructors': 1, },
295 'dependencies': [ 295 'dependencies': [
296 'remoting_base', 296 'remoting_base',
297 'remoting_jingle_glue', 297 'remoting_jingle_glue',
298 'remoting_protocol', 298 'remoting_protocol',
299 '../crypto/crypto.gyp:crypto', 299 '../crypto/crypto.gyp:crypto',
300 '../google_apis/google_apis.gyp:google_apis', 300 '../google_apis/google_apis.gyp:google_apis',
301 '../media/media.gyp:media', 301 '../media/media.gyp:media',
302 '../ipc/ipc.gyp:ipc', 302 '../ipc/ipc.gyp:ipc',
303 '../third_party/webrtc/modules/modules.gyp:desktop_capture',
303 ], 304 ],
304 'defines': [ 305 'defines': [
305 'VERSION=<(version_full)', 306 'VERSION=<(version_full)',
306 ], 307 ],
307 'sources': [ 308 'sources': [
308 'host/audio_capturer.cc', 309 'host/audio_capturer.cc',
309 'host/audio_capturer.h', 310 'host/audio_capturer.h',
310 'host/audio_capturer_linux.cc', 311 'host/audio_capturer_linux.cc',
311 'host/audio_capturer_linux.h', 312 'host/audio_capturer_linux.h',
312 'host/audio_capturer_mac.cc', 313 'host/audio_capturer_mac.cc',
313 'host/audio_capturer_win.cc', 314 'host/audio_capturer_win.cc',
314 'host/audio_capturer_win.h', 315 'host/audio_capturer_win.h',
315 'host/audio_scheduler.cc', 316 'host/audio_scheduler.cc',
316 'host/audio_scheduler.h', 317 'host/audio_scheduler.h',
317 'host/audio_silence_detector.cc', 318 'host/audio_silence_detector.cc',
318 'host/audio_silence_detector.h', 319 'host/audio_silence_detector.h',
319 'host/basic_desktop_environment.cc', 320 'host/basic_desktop_environment.cc',
320 'host/basic_desktop_environment.h', 321 'host/basic_desktop_environment.h',
321 'host/capture_scheduler.cc', 322 'host/capture_scheduler.cc',
322 'host/capture_scheduler.h', 323 'host/capture_scheduler.h',
323 'host/chromoting_host.cc', 324 'host/chromoting_host.cc',
324 'host/chromoting_host.h', 325 'host/chromoting_host.h',
325 'host/chromoting_host_context.cc', 326 'host/chromoting_host_context.cc',
326 'host/chromoting_host_context.h', 327 'host/chromoting_host_context.h',
327 'host/chromoting_messages.cc', 328 'host/chromoting_messages.cc',
328 'host/chromoting_messages.h', 329 'host/chromoting_messages.h',
330 'host/chromoting_param_traits.cc',
331 'host/chromoting_param_traits.h',
329 'host/client_session.cc', 332 'host/client_session.cc',
330 'host/client_session.h', 333 'host/client_session.h',
331 'host/client_session_control.h', 334 'host/client_session_control.h',
332 'host/clipboard.h', 335 'host/clipboard.h',
333 'host/clipboard_mac.mm', 336 'host/clipboard_mac.mm',
334 'host/clipboard_win.cc', 337 'host/clipboard_win.cc',
335 'host/clipboard_x11.cc', 338 'host/clipboard_x11.cc',
336 'host/config_file_watcher.cc', 339 'host/config_file_watcher.cc',
337 'host/config_file_watcher.h', 340 'host/config_file_watcher.h',
338 'host/constants_mac.cc', 341 'host/constants_mac.cc',
(...skipping 12 matching lines...) Expand all
351 'host/desktop_session_proxy.cc', 354 'host/desktop_session_proxy.cc',
352 'host/desktop_session_proxy.h', 355 'host/desktop_session_proxy.h',
353 'host/disconnect_window_gtk.cc', 356 'host/disconnect_window_gtk.cc',
354 'host/disconnect_window_mac.h', 357 'host/disconnect_window_mac.h',
355 'host/disconnect_window_mac.mm', 358 'host/disconnect_window_mac.mm',
356 'host/disconnect_window_win.cc', 359 'host/disconnect_window_win.cc',
357 'host/dns_blackhole_checker.cc', 360 'host/dns_blackhole_checker.cc',
358 'host/dns_blackhole_checker.h', 361 'host/dns_blackhole_checker.h',
359 'host/heartbeat_sender.cc', 362 'host/heartbeat_sender.cc',
360 'host/heartbeat_sender.h', 363 'host/heartbeat_sender.h',
361 'host/host_change_notification_listener.cc', 364 'host/host_change_notification_listener.cc',
362 'host/host_change_notification_listener.h', 365 'host/host_change_notification_listener.h',
363 'host/host_config.cc', 366 'host/host_config.cc',
364 'host/host_config.h', 367 'host/host_config.h',
365 'host/host_exit_codes.h', 368 'host/host_exit_codes.h',
366 'host/host_port_allocator.cc', 369 'host/host_port_allocator.cc',
367 'host/host_port_allocator.h', 370 'host/host_port_allocator.h',
368 'host/host_secret.cc', 371 'host/host_secret.cc',
369 'host/host_secret.h', 372 'host/host_secret.h',
370 'host/host_status_monitor.h', 373 'host/host_status_monitor.h',
371 'host/host_status_observer.h', 374 'host/host_status_observer.h',
(...skipping 1022 matching lines...) Expand 10 before | Expand all | Expand 10 after
1394 'remoting_breakpad', 1397 'remoting_breakpad',
1395 'remoting_host', 1398 'remoting_host',
1396 'remoting_host_event_logger', 1399 'remoting_host_event_logger',
1397 'remoting_host_logging', 1400 'remoting_host_logging',
1398 'remoting_lib_idl', 1401 'remoting_lib_idl',
1399 'remoting_lib_ps', 1402 'remoting_lib_ps',
1400 'remoting_lib_rc', 1403 'remoting_lib_rc',
1401 'remoting_me2me_host_static', 1404 'remoting_me2me_host_static',
1402 'remoting_protocol', 1405 'remoting_protocol',
1403 'remoting_version_resources', 1406 'remoting_version_resources',
1407 '../third_party/webrtc/modules/modules.gyp:desktop_capture',
1404 ], 1408 ],
1405 'sources': [ 1409 'sources': [
1406 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib.rc', 1410 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/chromoting_lib.rc',
1407 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/remoting_host_messages.rc' , 1411 '<(SHARED_INTERMEDIATE_DIR)/remoting/host/remoting_host_messages.rc' ,
1408 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_core_version.rc', 1412 '<(SHARED_INTERMEDIATE_DIR)/remoting/remoting_core_version.rc',
1409 'host/chromoting_messages.cc', 1413 'host/chromoting_messages.cc',
1410 'host/chromoting_messages.h', 1414 'host/chromoting_messages.h',
1411 'host/config_file_watcher.cc', 1415 'host/config_file_watcher.cc',
1412 'host/config_file_watcher.h', 1416 'host/config_file_watcher.h',
1413 'host/daemon_process.cc', 1417 'host/daemon_process.cc',
(...skipping 814 matching lines...) Expand 10 before | Expand all | Expand 10 after
2228 '../third_party/libyuv/libyuv.gyp:libyuv', 2232 '../third_party/libyuv/libyuv.gyp:libyuv',
2229 '../third_party/opus/opus.gyp:opus', 2233 '../third_party/opus/opus.gyp:opus',
2230 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 2234 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
2231 '../third_party/speex/speex.gyp:libspeex', 2235 '../third_party/speex/speex.gyp:libspeex',
2232 '../media/media.gyp:media', 2236 '../media/media.gyp:media',
2233 '../media/media.gyp:shared_memory_support', 2237 '../media/media.gyp:shared_memory_support',
2234 '../media/media.gyp:yuv_convert', 2238 '../media/media.gyp:yuv_convert',
2235 'remoting_jingle_glue', 2239 'remoting_jingle_glue',
2236 'remoting_resources', 2240 'remoting_resources',
2237 'proto/chromotocol.gyp:chromotocol_proto_lib', 2241 'proto/chromotocol.gyp:chromotocol_proto_lib',
2242 '../third_party/webrtc/modules/modules.gyp:desktop_capture',
2238 ], 2243 ],
2239 'export_dependent_settings': [ 2244 'export_dependent_settings': [
2240 '../base/base.gyp:base', 2245 '../base/base.gyp:base',
2241 '../net/net.gyp:net', 2246 '../net/net.gyp:net',
2242 '../skia/skia.gyp:skia', 2247 '../skia/skia.gyp:skia',
2243 '../third_party/protobuf/protobuf.gyp:protobuf_lite', 2248 '../third_party/protobuf/protobuf.gyp:protobuf_lite',
2244 'proto/chromotocol.gyp:chromotocol_proto_lib', 2249 'proto/chromotocol.gyp:chromotocol_proto_lib',
2245 ], 2250 ],
2246 # This target needs a hard dependency because dependent targets 2251 # This target needs a hard dependency because dependent targets
2247 # depend on chromotocol_proto_lib for headers. 2252 # depend on chromotocol_proto_lib for headers.
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
2523 'remoting_base', 2528 'remoting_base',
2524 'remoting_breakpad', 2529 'remoting_breakpad',
2525 'remoting_client', 2530 'remoting_client',
2526 'remoting_client_plugin', 2531 'remoting_client_plugin',
2527 'remoting_host', 2532 'remoting_host',
2528 'remoting_host_event_logger', 2533 'remoting_host_event_logger',
2529 'remoting_host_setup_base', 2534 'remoting_host_setup_base',
2530 'remoting_jingle_glue', 2535 'remoting_jingle_glue',
2531 'remoting_protocol', 2536 'remoting_protocol',
2532 'remoting_resources', 2537 'remoting_resources',
2538 '../third_party/webrtc/modules/modules.gyp:desktop_capture',
2533 ], 2539 ],
2534 'defines': [ 2540 'defines': [
2535 'VERSION=<(version_full)', 2541 'VERSION=<(version_full)',
2536 ], 2542 ],
2537 'include_dirs': [ 2543 'include_dirs': [
2538 '../testing/gmock/include', 2544 '../testing/gmock/include',
2539 ], 2545 ],
2540 'sources': [ 2546 'sources': [
2541 '../chrome/test/base/run_all_remoting_unittests.cc', 2547 '../chrome/test/base/run_all_remoting_unittests.cc',
2542 'base/auth_token_util_unittest.cc', 2548 'base/auth_token_util_unittest.cc',
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
2721 '../base/allocator/allocator.gyp:allocator', 2727 '../base/allocator/allocator.gyp:allocator',
2722 ], 2728 ],
2723 }, 2729 },
2724 ], 2730 ],
2725 ], 2731 ],
2726 }], # end of 'toolkit_uses_gtk == 1' 2732 }], # end of 'toolkit_uses_gtk == 1'
2727 ], # end of 'conditions' 2733 ], # end of 'conditions'
2728 }, # end of target 'remoting_unittests' 2734 }, # end of target 'remoting_unittests'
2729 ], # end of targets 2735 ], # end of targets
2730 } 2736 }
OLDNEW
« no previous file with comments | « remoting/host/video_scheduler_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698