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

Side by Side Diff: webrtc/api/BUILD.gn

Issue 1558733002: Update API for Objective-C RTCMediaStream. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Fix build issues Created 4 years, 11 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 unified diff | Download patch
« no previous file with comments | « no previous file | webrtc/api/api.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 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 import("../build/webrtc.gni") 9 import("../build/webrtc.gni")
10 10
(...skipping 11 matching lines...) Expand all
22 deps = [ 22 deps = [
23 "//webrtc/base:rtc_base_objc", 23 "//webrtc/base:rtc_base_objc",
24 #"//talk/libjingle:libjingle_peerconnection", 24 #"//talk/libjingle:libjingle_peerconnection",
25 ] 25 ]
26 cflags = [ 26 cflags = [
27 "-fobjc-arc", 27 "-fobjc-arc",
28 "-Wobjc-missing-property-synthesis", 28 "-Wobjc-missing-property-synthesis",
29 ] 29 ]
30 sources = [ 30 sources = [
31 # Add these when there's a BUILD.gn for peer connection APIs 31 # Add these when there's a BUILD.gn for peer connection APIs
32 #"objc/RTCAudioTrack+Private.h",
33 #"objc/RTCAudioTrack.h",
34 #"objc/RTCAudioTrack.mm",s
35 #"objc/RTCAVFoundationVideoSource+Private.h", 32 #"objc/RTCAVFoundationVideoSource+Private.h",
36 #"objc/RTCAVFoundationVideoSource.h", 33 #"objc/RTCAVFoundationVideoSource.h",
37 #"objc/RTCAVFoundationVideoSource.mm", 34 #"objc/RTCAVFoundationVideoSource.mm",
35 #"objc/RTCAudioTrack+Private.h",
36 #"objc/RTCAudioTrack.h",
37 #"objc/RTCAudioTrack.mm",
38 #"objc/RTCIceCandidate+Private.h", 38 #"objc/RTCIceCandidate+Private.h",
39 #"objc/RTCIceCandidate.h", 39 #"objc/RTCIceCandidate.h",
40 #"objc/RTCIceCandidate.mm", 40 #"objc/RTCIceCandidate.mm",
41 #"objc/RTCMediaStream+Private.h",
42 #"objc/RTCMediaStream.h",
43 #"objc/RTCMediaStream.mm",
41 #"objc/RTCMediaStreamTrack+Private.h", 44 #"objc/RTCMediaStreamTrack+Private.h",
42 #"objc/RTCMediaStreamTrack.h", 45 #"objc/RTCMediaStreamTrack.h",
43 #"objc/RTCMediaStreamTrack.mm", 46 #"objc/RTCMediaStreamTrack.mm",
44 #"objc/RTCPeerConnectionFactory+Private.h", 47 #"objc/RTCPeerConnectionFactory+Private.h",
45 #"objc/RTCPeerConnectionFactory.h", 48 #"objc/RTCPeerConnectionFactory.h",
46 #"objc/RTCPeerConnectionFactory.mm", 49 #"objc/RTCPeerConnectionFactory.mm",
47 #"objc/RTCVideoSource+Private.h", 50 #"objc/RTCVideoSource+Private.h",
48 #"objc/RTCVideoSource.h", 51 #"objc/RTCVideoSource.h",
49 #"objc/RTCVideoSource.mm", 52 #"objc/RTCVideoSource.mm",
50 #"objc/RTCVideoTrack+Private.h", 53 #"objc/RTCVideoTrack+Private.h",
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 } 87 }
85 88
86 if (is_mac) { 89 if (is_mac) {
87 sources += [ 90 sources += [
88 "objc/RTCNSGLVideoView.h", 91 "objc/RTCNSGLVideoView.h",
89 "objc/RTCNSGLVideoView.m", 92 "objc/RTCNSGLVideoView.m",
90 ] 93 ]
91 } 94 }
92 } 95 }
93 } 96 }
OLDNEW
« no previous file with comments | « no previous file | webrtc/api/api.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698