From a0cd9182aae4969501d33b9b72e45975a6e73f8d Mon Sep 17 00:00:00 2001 From: "sergeyu@chromium.org" Date: Wed, 17 Apr 2013 18:21:42 +0000 Subject: [PATCH] Add desktop_capture directory for screen and window capturers. The screen captures will be moved from chromium to WebRTC to make it easy to share this code with other projects. This CL adds a new directory where the current screen capturer code will be moved to. Review URL: https://webrtc-codereview.appspot.com/1297005 git-svn-id: http://webrtc.googlecode.com/svn/trunk@3866 4adac7df-926f-26a2-2b94-8c16560cd09d --- webrtc/modules/desktop_capture/OWNERS | 3 +++ .../desktop_capture/desktop_capture.gypi | 23 +++++++++++++++++++ webrtc/modules/modules.gyp | 1 + 3 files changed, 27 insertions(+) create mode 100644 webrtc/modules/desktop_capture/OWNERS create mode 100644 webrtc/modules/desktop_capture/desktop_capture.gypi diff --git a/webrtc/modules/desktop_capture/OWNERS b/webrtc/modules/desktop_capture/OWNERS new file mode 100644 index 000000000..3276530e9 --- /dev/null +++ b/webrtc/modules/desktop_capture/OWNERS @@ -0,0 +1,3 @@ +alexeypa@chromium.org +sergeyu@chromium.org +wez@chromium.org diff --git a/webrtc/modules/desktop_capture/desktop_capture.gypi b/webrtc/modules/desktop_capture/desktop_capture.gypi new file mode 100644 index 000000000..ad523a4fa --- /dev/null +++ b/webrtc/modules/desktop_capture/desktop_capture.gypi @@ -0,0 +1,23 @@ +# Copyright (c) 2013 The WebRTC project authors. All Rights Reserved. +# +# Use of this source code is governed by a BSD-style license +# that can be found in the LICENSE file in the root of the source +# tree. An additional intellectual property rights grant can be found +# in the file PATENTS. All contributing project authors may +# be found in the AUTHORS file in the root of the source tree. + +{ + 'targets': [ + { + 'target_name': 'desktop_capture', + 'type': 'static_library', + 'dependencies': [ + '<(webrtc_root)/system_wrappers/source/system_wrappers.gyp:system_wrappers', + ], + 'sources': [ + # TODO(sergeyu): Add source files here once they are moved from + # chromium. + ], + }, + ], # targets +} diff --git a/webrtc/modules/modules.gyp b/webrtc/modules/modules.gyp index abf861fae..58a60fd91 100644 --- a/webrtc/modules/modules.gyp +++ b/webrtc/modules/modules.gyp @@ -23,6 +23,7 @@ 'audio_device/audio_device.gypi', 'audio_processing/audio_processing.gypi', 'bitrate_controller/bitrate_controller.gypi', + 'desktop_capture/desktop_capture.gypi', 'media_file/source/media_file.gypi', 'pacing/pacing.gypi', 'remote_bitrate_estimator/remote_bitrate_estimator.gypi',