| 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 18 matching lines...) Expand all Loading... |
| 29 public_configs = [ | 29 public_configs = [ |
| 30 "..:common_inherited_config", | 30 "..:common_inherited_config", |
| 31 ":rtc_sdk_common_objc_config", | 31 ":rtc_sdk_common_objc_config", |
| 32 ] | 32 ] |
| 33 sources = [ | 33 sources = [ |
| 34 "objc/Framework/Classes/NSString+StdString.h", | 34 "objc/Framework/Classes/NSString+StdString.h", |
| 35 "objc/Framework/Classes/NSString+StdString.mm", | 35 "objc/Framework/Classes/NSString+StdString.mm", |
| 36 "objc/Framework/Classes/RTCDispatcher.m", | 36 "objc/Framework/Classes/RTCDispatcher.m", |
| 37 "objc/Framework/Classes/RTCFieldTrials.mm", | 37 "objc/Framework/Classes/RTCFieldTrials.mm", |
| 38 "objc/Framework/Classes/RTCLogging.mm", | 38 "objc/Framework/Classes/RTCLogging.mm", |
| 39 "objc/Framework/Classes/RTCMetrics.mm", |
| 40 "objc/Framework/Classes/RTCMetricsSampleInfo+Private.h", |
| 41 "objc/Framework/Classes/RTCMetricsSampleInfo.mm", |
| 39 "objc/Framework/Classes/RTCSSLAdapter.mm", | 42 "objc/Framework/Classes/RTCSSLAdapter.mm", |
| 40 "objc/Framework/Classes/RTCTracing.mm", | 43 "objc/Framework/Classes/RTCTracing.mm", |
| 41 "objc/Framework/Headers/WebRTC/RTCDispatcher.h", | 44 "objc/Framework/Headers/WebRTC/RTCDispatcher.h", |
| 42 "objc/Framework/Headers/WebRTC/RTCFieldTrials.h", | 45 "objc/Framework/Headers/WebRTC/RTCFieldTrials.h", |
| 43 "objc/Framework/Headers/WebRTC/RTCLogging.h", | 46 "objc/Framework/Headers/WebRTC/RTCLogging.h", |
| 44 "objc/Framework/Headers/WebRTC/RTCMacros.h", | 47 "objc/Framework/Headers/WebRTC/RTCMacros.h", |
| 48 "objc/Framework/Headers/WebRTC/RTCMetrics.h", |
| 49 "objc/Framework/Headers/WebRTC/RTCMetricsSampleInfo.h", |
| 45 "objc/Framework/Headers/WebRTC/RTCSSLAdapter.h", | 50 "objc/Framework/Headers/WebRTC/RTCSSLAdapter.h", |
| 46 "objc/Framework/Headers/WebRTC/RTCTracing.h", | 51 "objc/Framework/Headers/WebRTC/RTCTracing.h", |
| 47 ] | 52 ] |
| 48 if (is_ios) { | 53 if (is_ios) { |
| 49 sources += [ | 54 sources += [ |
| 50 "objc/Framework/Classes/RTCCameraPreviewView.m", | 55 "objc/Framework/Classes/RTCCameraPreviewView.m", |
| 51 "objc/Framework/Classes/RTCUIApplication.h", | 56 "objc/Framework/Classes/RTCUIApplication.h", |
| 52 "objc/Framework/Classes/RTCUIApplication.mm", | 57 "objc/Framework/Classes/RTCUIApplication.mm", |
| 53 "objc/Framework/Headers/WebRTC/RTCCameraPreviewView.h", | 58 "objc/Framework/Headers/WebRTC/RTCCameraPreviewView.h", |
| 54 ] | 59 ] |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 179 libs += [ "stdc++" ] | 184 libs += [ "stdc++" ] |
| 180 | 185 |
| 181 deps = [ | 186 deps = [ |
| 182 ":rtc_sdk_common_objc", | 187 ":rtc_sdk_common_objc", |
| 183 "../api:libjingle_peerconnection", | 188 "../api:libjingle_peerconnection", |
| 184 ] | 189 ] |
| 185 } | 190 } |
| 186 | 191 |
| 187 # TODO(tkchin): Add the rtc_sdk_framework_objc target. | 192 # TODO(tkchin): Add the rtc_sdk_framework_objc target. |
| 188 } | 193 } |
| OLD | NEW |