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 { | 9 { |
10 'includes': [ | 10 'includes': [ |
(...skipping 19 matching lines...) Expand all Loading... |
30 'objc/Framework/Classes', | 30 'objc/Framework/Classes', |
31 'objc/Framework/Headers', | 31 'objc/Framework/Headers', |
32 ], | 32 ], |
33 }, | 33 }, |
34 'sources': [ | 34 'sources': [ |
35 'objc/Framework/Classes/NSString+StdString.h', | 35 'objc/Framework/Classes/NSString+StdString.h', |
36 'objc/Framework/Classes/NSString+StdString.mm', | 36 'objc/Framework/Classes/NSString+StdString.mm', |
37 'objc/Framework/Classes/RTCDispatcher.m', | 37 'objc/Framework/Classes/RTCDispatcher.m', |
38 'objc/Framework/Classes/RTCFieldTrials.mm', | 38 'objc/Framework/Classes/RTCFieldTrials.mm', |
39 'objc/Framework/Classes/RTCLogging.mm', | 39 'objc/Framework/Classes/RTCLogging.mm', |
| 40 'objc/Framework/Classes/RTCMetrics.mm', |
| 41 'objc/Framework/Classes/RTCMetricsSampleInfo+Private.h', |
| 42 'objc/Framework/Classes/RTCMetricsSampleInfo.mm', |
40 'objc/Framework/Classes/RTCSSLAdapter.mm', | 43 'objc/Framework/Classes/RTCSSLAdapter.mm', |
41 'objc/Framework/Classes/RTCTracing.mm', | 44 'objc/Framework/Classes/RTCTracing.mm', |
42 'objc/Framework/Headers/WebRTC/RTCDispatcher.h', | 45 'objc/Framework/Headers/WebRTC/RTCDispatcher.h', |
43 'objc/Framework/Headers/WebRTC/RTCFieldTrials.h', | 46 'objc/Framework/Headers/WebRTC/RTCFieldTrials.h', |
44 'objc/Framework/Headers/WebRTC/RTCLogging.h', | 47 'objc/Framework/Headers/WebRTC/RTCLogging.h', |
45 'objc/Framework/Headers/WebRTC/RTCMacros.h', | 48 'objc/Framework/Headers/WebRTC/RTCMacros.h', |
| 49 'objc/Framework/Headers/WebRTC/RTCMetrics.h', |
| 50 'objc/Framework/Headers/WebRTC/RTCMetricsSampleInfo.h', |
46 'objc/Framework/Headers/WebRTC/RTCSSLAdapter.h', | 51 'objc/Framework/Headers/WebRTC/RTCSSLAdapter.h', |
47 'objc/Framework/Headers/WebRTC/RTCTracing.h', | 52 'objc/Framework/Headers/WebRTC/RTCTracing.h', |
48 ], | 53 ], |
49 'conditions': [ | 54 'conditions': [ |
50 ['OS=="ios"', { | 55 ['OS=="ios"', { |
51 'sources': [ | 56 'sources': [ |
52 'objc/Framework/Classes/RTCCameraPreviewView.m', | 57 'objc/Framework/Classes/RTCCameraPreviewView.m', |
53 'objc/Framework/Classes/RTCUIApplication.h', | 58 'objc/Framework/Classes/RTCUIApplication.h', |
54 'objc/Framework/Classes/RTCUIApplication.mm', | 59 'objc/Framework/Classes/RTCUIApplication.mm', |
55 'objc/Framework/Headers/WebRTC/RTCCameraPreviewView.h', | 60 'objc/Framework/Headers/WebRTC/RTCCameraPreviewView.h', |
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
298 'mac_framework_headers!': [ | 303 'mac_framework_headers!': [ |
299 'objc/Framework/Headers/WebRTC/RTCFileLogger.h', | 304 'objc/Framework/Headers/WebRTC/RTCFileLogger.h', |
300 ], | 305 ], |
301 }], | 306 }], |
302 ], # conditions | 307 ], # conditions |
303 }, # rtc_sdk_framework_objc | 308 }, # rtc_sdk_framework_objc |
304 ], # targets | 309 ], # targets |
305 }], # OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7") | 310 }], # OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7") |
306 ], | 311 ], |
307 } | 312 } |
OLD | NEW |