| 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/RTCMetric+Private.h", |
| 32 "objc/Framework/Classes/RTCMetric.mm", |
| 31 "objc/Framework/Classes/RTCSSLAdapter.mm", | 33 "objc/Framework/Classes/RTCSSLAdapter.mm", |
| 32 "objc/Framework/Classes/RTCTracing.mm", | 34 "objc/Framework/Classes/RTCTracing.mm", |
| 33 "objc/Framework/Classes/RTCUIApplication.h", | 35 "objc/Framework/Classes/RTCUIApplication.h", |
| 34 "objc/Framework/Classes/RTCUIApplication.mm", | 36 "objc/Framework/Classes/RTCUIApplication.mm", |
| 35 "objc/Framework/Headers/WebRTC/RTCCameraPreviewView.h", | 37 "objc/Framework/Headers/WebRTC/RTCCameraPreviewView.h", |
| 36 "objc/Framework/Headers/WebRTC/RTCDispatcher.h", | 38 "objc/Framework/Headers/WebRTC/RTCDispatcher.h", |
| 37 "objc/Framework/Headers/WebRTC/RTCFieldTrials.h", | 39 "objc/Framework/Headers/WebRTC/RTCFieldTrials.h", |
| 38 "objc/Framework/Headers/WebRTC/RTCLogging.h", | 40 "objc/Framework/Headers/WebRTC/RTCLogging.h", |
| 39 "objc/Framework/Headers/WebRTC/RTCMacros.h", | 41 "objc/Framework/Headers/WebRTC/RTCMacros.h", |
| 42 "objc/Framework/Headers/WebRTC/RTCMetric.h", |
| 40 "objc/Framework/Headers/WebRTC/RTCSSLAdapter.h", | 43 "objc/Framework/Headers/WebRTC/RTCSSLAdapter.h", |
| 41 "objc/Framework/Headers/WebRTC/RTCTracing.h", | 44 "objc/Framework/Headers/WebRTC/RTCTracing.h", |
| 42 ] | 45 ] |
| 43 if (!build_with_chromium) { | 46 if (!build_with_chromium) { |
| 44 sources += [ | 47 sources += [ |
| 45 "objc/Framework/Classes/RTCFileLogger.mm", | 48 "objc/Framework/Classes/RTCFileLogger.mm", |
| 46 "objc/Framework/Headers/WebRTC/RTCFileLogger.h", | 49 "objc/Framework/Headers/WebRTC/RTCFileLogger.h", |
| 47 ] | 50 ] |
| 48 } | 51 } |
| 49 libs = [ "AVFoundation.framework" ] | 52 libs = [ "AVFoundation.framework" ] |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 146 } | 149 } |
| 147 | 150 |
| 148 if (is_mac) { | 151 if (is_mac) { |
| 149 sources += [ | 152 sources += [ |
| 150 "objc/Framework/Classes/RTCNSGLVideoView.m", | 153 "objc/Framework/Classes/RTCNSGLVideoView.m", |
| 151 "objc/Framework/Headers/WebRTC/RTCNSGLVideoView.h", | 154 "objc/Framework/Headers/WebRTC/RTCNSGLVideoView.h", |
| 152 ] | 155 ] |
| 153 } | 156 } |
| 154 } | 157 } |
| 155 } | 158 } |
| OLD | NEW |