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

Side by Side Diff: webrtc/webrtc_examples.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: Added doc on dispatcher. 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 # Copyright (c) 2012 The WebRTC Project Authors. All rights reserved. 1 # Copyright (c) 2012 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 'includes': [ 9 'includes': [
10 '../talk/build/common.gypi', 10 '../talk/build/common.gypi',
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after
131 }, # target peerconnection_client 131 }, # target peerconnection_client
132 ], # targets 132 ], # targets
133 }], # OS=="linux" or OS=="win" 133 }], # OS=="linux" or OS=="win"
134 134
135 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { 135 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', {
136 'targets': [ 136 'targets': [
137 { 137 {
138 'target_name': 'apprtc_common', 138 'target_name': 'apprtc_common',
139 'type': 'static_library', 139 'type': 'static_library',
140 'dependencies': [ 140 'dependencies': [
141 '<(webrtc_root)/base/base.gyp:rtc_base_objc',
141 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_defa ult', 142 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_defa ult',
142 '../talk/libjingle.gyp:libjingle_peerconnection_objc', 143 '../talk/libjingle.gyp:libjingle_peerconnection_objc',
143 ], 144 ],
144 'sources': [ 145 'sources': [
145 'examples/objc/AppRTCDemo/common/ARDUtilities.h', 146 'examples/objc/AppRTCDemo/common/ARDUtilities.h',
146 'examples/objc/AppRTCDemo/common/ARDUtilities.m', 147 'examples/objc/AppRTCDemo/common/ARDUtilities.m',
147 ], 148 ],
148 'include_dirs': [ 149 'include_dirs': [
149 'examples/objc/AppRTCDemo/common', 150 'examples/objc/AppRTCDemo/common',
150 ], 151 ],
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 'apk_name': 'AppRTCDemoTest', 400 'apk_name': 'AppRTCDemoTest',
400 'java_in_dir': 'examples/androidtests', 401 'java_in_dir': 'examples/androidtests',
401 'is_test_apk': 1, 402 'is_test_apk': 1,
402 }, 403 },
403 'includes': [ '../build/java_apk.gypi' ], 404 'includes': [ '../build/java_apk.gypi' ],
404 }, 405 },
405 ], # targets 406 ], # targets
406 }], # OS=="android" 407 }], # OS=="android"
407 ], 408 ],
408 } 409 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698