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',