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

Side by Side Diff: talk/libjingle.gyp

Issue 1497393002: Add new view that renders local video using AVCaptureLayerPreview. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Removed commented line. Created 5 years 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 # 1 #
2 # libjingle 2 # libjingle
3 # Copyright 2012 Google Inc. 3 # Copyright 2012 Google Inc.
4 # 4 #
5 # Redistribution and use in source and binary forms, with or without 5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are met: 6 # modification, are permitted provided that the following conditions are met:
7 # 7 #
8 # 1. Redistributions of source code must retain the above copyright notice, 8 # 1. Redistributions of source code must retain the above copyright notice,
9 # this list of conditions and the following disclaimer. 9 # this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright notice, 10 # 2. Redistributions in binary form must reproduce the above copyright notice,
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after
357 # like it is for ios. 357 # like it is for ios.
358 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO', 358 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO',
359 }, 359 },
360 'conditions': [ 360 'conditions': [
361 ['OS=="ios"', { 361 ['OS=="ios"', {
362 'sources': [ 362 'sources': [
363 'app/webrtc/objc/avfoundationvideocapturer.h', 363 'app/webrtc/objc/avfoundationvideocapturer.h',
364 'app/webrtc/objc/avfoundationvideocapturer.mm', 364 'app/webrtc/objc/avfoundationvideocapturer.mm',
365 'app/webrtc/objc/RTCAVFoundationVideoSource+Internal.h', 365 'app/webrtc/objc/RTCAVFoundationVideoSource+Internal.h',
366 'app/webrtc/objc/RTCAVFoundationVideoSource.mm', 366 'app/webrtc/objc/RTCAVFoundationVideoSource.mm',
367 'app/webrtc/objc/RTCCameraPreviewView.mm',
368 'app/webrtc/objc/public/RTCCameraPreviewView.h',
367 'app/webrtc/objc/RTCEAGLVideoView.m', 369 'app/webrtc/objc/RTCEAGLVideoView.m',
368 'app/webrtc/objc/public/RTCEAGLVideoView.h', 370 'app/webrtc/objc/public/RTCEAGLVideoView.h',
369 'app/webrtc/objc/public/RTCAVFoundationVideoSource.h', 371 'app/webrtc/objc/public/RTCAVFoundationVideoSource.h',
370 ], 372 ],
371 'link_settings': { 373 'link_settings': {
372 'xcode_settings': { 374 'xcode_settings': {
373 'OTHER_LDFLAGS': [ 375 'OTHER_LDFLAGS': [
374 '-framework CoreGraphics', 376 '-framework CoreGraphics',
375 '-framework GLKit', 377 '-framework GLKit',
376 ], 378 ],
(...skipping 416 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 ['OS=="android" and build_with_chromium==0', { 795 ['OS=="android" and build_with_chromium==0', {
794 'sources': [ 796 'sources': [
795 'app/webrtc/androidvideocapturer.h', 797 'app/webrtc/androidvideocapturer.h',
796 'app/webrtc/androidvideocapturer.cc', 798 'app/webrtc/androidvideocapturer.cc',
797 ], 799 ],
798 }], 800 }],
799 ], 801 ],
800 }, # target libjingle_peerconnection 802 }, # target libjingle_peerconnection
801 ], 803 ],
802 } 804 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698