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("../webrtc.gni") | 9 import("../webrtc.gni") |
10 if (is_ios) { | 10 if (is_ios) { |
(...skipping 19 matching lines...) Expand all Loading... |
30 rtc_static_library("rtc_sdk_common_objc") { | 30 rtc_static_library("rtc_sdk_common_objc") { |
31 deps = [ | 31 deps = [ |
32 "../base:rtc_base", | 32 "../base:rtc_base", |
33 ] | 33 ] |
34 configs += [ | 34 configs += [ |
35 "..:common_objc", | 35 "..:common_objc", |
36 "//build/config/compiler:enable_arc", | 36 "//build/config/compiler:enable_arc", |
37 ] | 37 ] |
38 public_configs = [ ":rtc_sdk_common_objc_config" ] | 38 public_configs = [ ":rtc_sdk_common_objc_config" ] |
39 sources = [ | 39 sources = [ |
| 40 "objc/Framework/Classes/NSData+StdString.h", |
| 41 "objc/Framework/Classes/NSData+StdString.mm", |
40 "objc/Framework/Classes/NSString+StdString.h", | 42 "objc/Framework/Classes/NSString+StdString.h", |
41 "objc/Framework/Classes/NSString+StdString.mm", | 43 "objc/Framework/Classes/NSString+StdString.mm", |
42 "objc/Framework/Classes/RTCDispatcher.m", | 44 "objc/Framework/Classes/RTCDispatcher.m", |
43 "objc/Framework/Classes/RTCFieldTrials.mm", | 45 "objc/Framework/Classes/RTCFieldTrials.mm", |
44 "objc/Framework/Classes/RTCLogging.mm", | 46 "objc/Framework/Classes/RTCLogging.mm", |
45 "objc/Framework/Classes/RTCMetrics.mm", | 47 "objc/Framework/Classes/RTCMetrics.mm", |
46 "objc/Framework/Classes/RTCMetricsSampleInfo+Private.h", | 48 "objc/Framework/Classes/RTCMetricsSampleInfo+Private.h", |
47 "objc/Framework/Classes/RTCMetricsSampleInfo.mm", | 49 "objc/Framework/Classes/RTCMetricsSampleInfo.mm", |
48 "objc/Framework/Classes/RTCSSLAdapter.mm", | 50 "objc/Framework/Classes/RTCSSLAdapter.mm", |
49 "objc/Framework/Classes/RTCTracing.mm", | 51 "objc/Framework/Classes/RTCTracing.mm", |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
396 deps += [ "$rtc_libyuv_dir" ] | 398 deps += [ "$rtc_libyuv_dir" ] |
397 public_deps = [ | 399 public_deps = [ |
398 "$rtc_libyuv_dir", | 400 "$rtc_libyuv_dir", |
399 ] | 401 ] |
400 } else { | 402 } else { |
401 # Need to add a directory normally exported by libyuv. | 403 # Need to add a directory normally exported by libyuv. |
402 include_dirs = [ "$rtc_libyuv_dir/include" ] | 404 include_dirs = [ "$rtc_libyuv_dir/include" ] |
403 } | 405 } |
404 } | 406 } |
405 } | 407 } |
OLD | NEW |