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

Side by Side Diff: webrtc/modules/modules.gyp

Issue 2210443002: [WebRTC] Implement Windows ScreenDrawer to test ScreenCapturer* (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Implement ScreenDrawer for X11 Created 4 years, 4 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
OLDNEW
1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2011 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 { 9 {
10 'includes': [ 10 'includes': [
(...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after
418 ], 418 ],
419 }], 419 }],
420 ['desktop_capture_supported==1', { 420 ['desktop_capture_supported==1', {
421 'sources': [ 421 'sources': [
422 'desktop_capture/desktop_and_cursor_composer_unittest.cc', 422 'desktop_capture/desktop_and_cursor_composer_unittest.cc',
423 'desktop_capture/mouse_cursor_monitor_unittest.cc', 423 'desktop_capture/mouse_cursor_monitor_unittest.cc',
424 'desktop_capture/screen_capturer_helper_unittest.cc', 424 'desktop_capture/screen_capturer_helper_unittest.cc',
425 'desktop_capture/screen_capturer_mac_unittest.cc', 425 'desktop_capture/screen_capturer_mac_unittest.cc',
426 'desktop_capture/screen_capturer_mock_objects.h', 426 'desktop_capture/screen_capturer_mock_objects.h',
427 'desktop_capture/screen_capturer_unittest.cc', 427 'desktop_capture/screen_capturer_unittest.cc',
428 'desktop_capture/screen_drawer.cc',
429 'desktop_capture/screen_drawer.h',
430 'desktop_capture/screen_drawer_linux.cc',
431 'desktop_capture/screen_drawer_linux.h',
432 'desktop_capture/screen_drawer_unittest.cc',
433 'desktop_capture/screen_drawer_win.cc',
434 'desktop_capture/screen_drawer_win.h',
428 'desktop_capture/window_capturer_unittest.cc', 435 'desktop_capture/window_capturer_unittest.cc',
429 'desktop_capture/win/cursor_unittest.cc', 436 'desktop_capture/win/cursor_unittest.cc',
430 'desktop_capture/win/cursor_unittest_resources.h', 437 'desktop_capture/win/cursor_unittest_resources.h',
431 'desktop_capture/win/cursor_unittest_resources.rc', 438 'desktop_capture/win/cursor_unittest_resources.rc',
432 ], 439 ],
433 }], 440 }],
434 ['prefer_fixed_point==1', { 441 ['prefer_fixed_point==1', {
435 'defines': [ 'WEBRTC_AUDIOPROC_FIXED_PROFILE' ], 442 'defines': [ 'WEBRTC_AUDIOPROC_FIXED_PROFILE' ],
436 }, { 443 }, {
437 'defines': [ 'WEBRTC_AUDIOPROC_FLOAT_PROFILE' ], 444 'defines': [ 'WEBRTC_AUDIOPROC_FLOAT_PROFILE' ],
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after
775 'sources': [ 782 'sources': [
776 'modules_unittests.isolate', 783 'modules_unittests.isolate',
777 ], 784 ],
778 }, 785 },
779 ], 786 ],
780 }], 787 }],
781 ], 788 ],
782 }], # include_tests 789 }], # include_tests
783 ], # conditions 790 ], # conditions
784 } 791 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698