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 if (is_ios) { | 10 if (is_ios) { |
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 "objc/Framework/Headers/WebRTC/RTCMetricsSampleInfo.h", | 55 "objc/Framework/Headers/WebRTC/RTCMetricsSampleInfo.h", |
56 "objc/Framework/Headers/WebRTC/RTCSSLAdapter.h", | 56 "objc/Framework/Headers/WebRTC/RTCSSLAdapter.h", |
57 "objc/Framework/Headers/WebRTC/RTCTracing.h", | 57 "objc/Framework/Headers/WebRTC/RTCTracing.h", |
58 ] | 58 ] |
59 if (is_ios) { | 59 if (is_ios) { |
60 sources += [ | 60 sources += [ |
61 "objc/Framework/Classes/RTCCameraPreviewView.m", | 61 "objc/Framework/Classes/RTCCameraPreviewView.m", |
62 "objc/Framework/Classes/RTCUIApplication.h", | 62 "objc/Framework/Classes/RTCUIApplication.h", |
63 "objc/Framework/Classes/RTCUIApplication.mm", | 63 "objc/Framework/Classes/RTCUIApplication.mm", |
64 "objc/Framework/Classes/UIDevice+RTCDevice.mm", | 64 "objc/Framework/Classes/UIDevice+RTCDevice.mm", |
| 65 "objc/Framework/Classes/helpers.h", |
| 66 "objc/Framework/Classes/helpers.mm", |
65 "objc/Framework/Headers/WebRTC/RTCCameraPreviewView.h", | 67 "objc/Framework/Headers/WebRTC/RTCCameraPreviewView.h", |
66 "objc/Framework/Headers/WebRTC/UIDevice+RTCDevice.h", | 68 "objc/Framework/Headers/WebRTC/UIDevice+RTCDevice.h", |
67 ] | 69 ] |
68 libs = [ "AVFoundation.framework" ] | 70 libs = [ "AVFoundation.framework" ] |
69 } | 71 } |
70 if (!build_with_chromium) { | 72 if (!build_with_chromium) { |
71 sources += [ | 73 sources += [ |
72 "objc/Framework/Classes/RTCFileLogger.mm", | 74 "objc/Framework/Classes/RTCFileLogger.mm", |
73 "objc/Framework/Headers/WebRTC/RTCFileLogger.h", | 75 "objc/Framework/Headers/WebRTC/RTCFileLogger.h", |
74 ] | 76 ] |
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
356 deps += [ "$rtc_libyuv_dir" ] | 358 deps += [ "$rtc_libyuv_dir" ] |
357 public_deps = [ | 359 public_deps = [ |
358 "$rtc_libyuv_dir", | 360 "$rtc_libyuv_dir", |
359 ] | 361 ] |
360 } else { | 362 } else { |
361 # Need to add a directory normally exported by libyuv. | 363 # Need to add a directory normally exported by libyuv. |
362 include_dirs = [ "$rtc_libyuv_dir/include" ] | 364 include_dirs = [ "$rtc_libyuv_dir/include" ] |
363 } | 365 } |
364 } | 366 } |
365 } | 367 } |
OLD | NEW |