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

Unified Diff: webrtc/common_video/common_video.gyp

Issue 1853503003: Add CoreVideoFrameBuffer. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Move to own file. Created 4 years, 9 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 side-by-side diff with in-line comments
Download patch
Index: webrtc/common_video/common_video.gyp
diff --git a/webrtc/common_video/common_video.gyp b/webrtc/common_video/common_video.gyp
index fe14da1d2efe8bfbdf51dfdef0439f9c759e6dd9..e7be4506be9d7353656f16ebca065d7ab257ba6c 100644
--- a/webrtc/common_video/common_video.gyp
+++ b/webrtc/common_video/common_video.gyp
@@ -37,6 +37,19 @@
# Need to add a directory normally exported by libyuv.gyp.
'include_dirs': ['<(libyuv_dir)/include',],
}],
+ ['OS=="ios" or OS=="mac"', {
+ 'sources': [
+ 'core_video_frame_buffer.cc',
+ 'include/core_video_frame_buffer.h',
+ ],
+ 'link_settings': {
+ 'xcode_settings': {
+ 'OTHER_LDFLAGS': [
+ '-framework CoreVideo',
+ ],
+ },
+ },
+ }],
],
'sources': [
'i420_buffer_pool.cc',

Powered by Google App Engine
This is Rietveld 408576698