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