| OLD | NEW |
| 1 # Copyright 2016 The WebRTC project authors. All Rights Reserved. | 1 # Copyright 2016 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 import("//build_overrides/webrtc.gni") | 10 import("//build_overrides/webrtc.gni") |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 "objc/Framework/Classes", | 21 "objc/Framework/Classes", |
| 22 "objc/Framework/Headers", | 22 "objc/Framework/Headers", |
| 23 ] | 23 ] |
| 24 sources = [ | 24 sources = [ |
| 25 "objc/Framework/Classes/NSString+StdString.h", | 25 "objc/Framework/Classes/NSString+StdString.h", |
| 26 "objc/Framework/Classes/NSString+StdString.mm", | 26 "objc/Framework/Classes/NSString+StdString.mm", |
| 27 "objc/Framework/Classes/RTCCameraPreviewView.m", | 27 "objc/Framework/Classes/RTCCameraPreviewView.m", |
| 28 "objc/Framework/Classes/RTCDispatcher.m", | 28 "objc/Framework/Classes/RTCDispatcher.m", |
| 29 "objc/Framework/Classes/RTCFieldTrials.mm", | 29 "objc/Framework/Classes/RTCFieldTrials.mm", |
| 30 "objc/Framework/Classes/RTCLogging.mm", | 30 "objc/Framework/Classes/RTCLogging.mm", |
| 31 "objc/Framework/Classes/RTCMetrics.mm", |
| 32 "objc/Framework/Classes/RTCMetricsSampleInfo+Private.h", |
| 33 "objc/Framework/Classes/RTCMetricsSampleInfo.mm", |
| 31 "objc/Framework/Classes/RTCSSLAdapter.mm", | 34 "objc/Framework/Classes/RTCSSLAdapter.mm", |
| 32 "objc/Framework/Classes/RTCTracing.mm", | 35 "objc/Framework/Classes/RTCTracing.mm", |
| 33 "objc/Framework/Classes/RTCUIApplication.h", | 36 "objc/Framework/Classes/RTCUIApplication.h", |
| 34 "objc/Framework/Classes/RTCUIApplication.mm", | 37 "objc/Framework/Classes/RTCUIApplication.mm", |
| 35 "objc/Framework/Headers/WebRTC/RTCCameraPreviewView.h", | 38 "objc/Framework/Headers/WebRTC/RTCCameraPreviewView.h", |
| 36 "objc/Framework/Headers/WebRTC/RTCDispatcher.h", | 39 "objc/Framework/Headers/WebRTC/RTCDispatcher.h", |
| 37 "objc/Framework/Headers/WebRTC/RTCFieldTrials.h", | 40 "objc/Framework/Headers/WebRTC/RTCFieldTrials.h", |
| 38 "objc/Framework/Headers/WebRTC/RTCLogging.h", | 41 "objc/Framework/Headers/WebRTC/RTCLogging.h", |
| 39 "objc/Framework/Headers/WebRTC/RTCMacros.h", | 42 "objc/Framework/Headers/WebRTC/RTCMacros.h", |
| 43 "objc/Framework/Headers/WebRTC/RTCMetrics.h", |
| 44 "objc/Framework/Headers/WebRTC/RTCMetricsSampleInfo.h", |
| 40 "objc/Framework/Headers/WebRTC/RTCSSLAdapter.h", | 45 "objc/Framework/Headers/WebRTC/RTCSSLAdapter.h", |
| 41 "objc/Framework/Headers/WebRTC/RTCTracing.h", | 46 "objc/Framework/Headers/WebRTC/RTCTracing.h", |
| 42 ] | 47 ] |
| 43 if (!build_with_chromium) { | 48 if (!build_with_chromium) { |
| 44 sources += [ | 49 sources += [ |
| 45 "objc/Framework/Classes/RTCFileLogger.mm", | 50 "objc/Framework/Classes/RTCFileLogger.mm", |
| 46 "objc/Framework/Headers/WebRTC/RTCFileLogger.h", | 51 "objc/Framework/Headers/WebRTC/RTCFileLogger.h", |
| 47 ] | 52 ] |
| 48 } | 53 } |
| 49 libs = [ "AVFoundation.framework" ] | 54 libs = [ "AVFoundation.framework" ] |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 } | 151 } |
| 147 | 152 |
| 148 if (is_mac) { | 153 if (is_mac) { |
| 149 sources += [ | 154 sources += [ |
| 150 "objc/Framework/Classes/RTCNSGLVideoView.m", | 155 "objc/Framework/Classes/RTCNSGLVideoView.m", |
| 151 "objc/Framework/Headers/WebRTC/RTCNSGLVideoView.h", | 156 "objc/Framework/Headers/WebRTC/RTCNSGLVideoView.h", |
| 152 ] | 157 ] |
| 153 } | 158 } |
| 154 } | 159 } |
| 155 } | 160 } |
| OLD | NEW |