| OLD | NEW |
| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 "objc/RTCSessionDescription+Private.h", | 49 "objc/RTCSessionDescription+Private.h", |
| 50 "objc/RTCSessionDescription.h", | 50 "objc/RTCSessionDescription.h", |
| 51 "objc/RTCSessionDescription.mm", | 51 "objc/RTCSessionDescription.mm", |
| 52 "objc/RTCStatsReport+Private.h", | 52 "objc/RTCStatsReport+Private.h", |
| 53 "objc/RTCStatsReport.h", | 53 "objc/RTCStatsReport.h", |
| 54 "objc/RTCStatsReport.mm", | 54 "objc/RTCStatsReport.mm", |
| 55 "objc/RTCVideoFrame+Private.h", | 55 "objc/RTCVideoFrame+Private.h", |
| 56 "objc/RTCVideoFrame.h", | 56 "objc/RTCVideoFrame.h", |
| 57 "objc/RTCVideoFrame.mm", | 57 "objc/RTCVideoFrame.mm", |
| 58 "objc/RTCVideoRenderer.h", | 58 "objc/RTCVideoRenderer.h", |
| 59 "objc/RTCVideoRendererAdapter+Private.h", |
| 60 "objc/RTCVideoRendererAdapter.h", |
| 61 "objc/RTCVideoRendererAdapter.mm", |
| 59 "objc/WebRTC-Prefix.pch", | 62 "objc/WebRTC-Prefix.pch", |
| 60 ] | 63 ] |
| 61 | 64 |
| 62 if (is_ios) { | 65 if (is_ios) { |
| 63 sources += [ | 66 sources += [ |
| 64 "objc/RTCEAGLVideoView.h", | 67 "objc/RTCEAGLVideoView.h", |
| 65 "objc/RTCEAGLVideoView.m", | 68 "objc/RTCEAGLVideoView.m", |
| 66 ] | 69 ] |
| 67 } | 70 } |
| 68 | 71 |
| 69 if (is_mac) { | 72 if (is_mac) { |
| 70 sources += [ | 73 sources += [ |
| 71 "objc/RTCNSGLVideoView.h", | 74 "objc/RTCNSGLVideoView.h", |
| 72 "objc/RTCNSGLVideoView.m", | 75 "objc/RTCNSGLVideoView.m", |
| 73 ] | 76 ] |
| 74 } | 77 } |
| 75 } | 78 } |
| 76 } | 79 } |
| OLD | NEW |