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': [ |
11 '../build/common.gypi', | 11 '../build/common.gypi', |
12 'sdk.gypi', | 12 'sdk.gypi', |
13 ], | 13 ], |
14 'conditions': [ | 14 'conditions': [ |
15 ['OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7")', { | 15 ['OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7")', { |
16 'targets': [ | 16 'targets': [ |
17 { | 17 { |
18 'target_name': 'rtc_sdk_common_objc', | 18 'target_name': 'rtc_sdk_common_objc', |
19 'type': 'static_library', | 19 'type': 'static_library', |
20 'includes': [ '../build/objc_common.gypi' ], | 20 'includes': [ '../build/objc_common.gypi' ], |
21 'dependencies': [ | 21 'dependencies': [ |
22 '../base/base.gyp:rtc_base', | 22 '../base/base.gyp:rtc_base', |
23 ], | 23 ], |
24 'include_dirs': [ | 24 'include_dirs': [ |
25 'objc/Framework/Classes', | 25 'objc/Framework/Classes', |
26 'objc/Framework/Headers', | 26 'objc/Framework/Headers', |
| 27 'objc/Framework/Headers/WebRTC', |
27 ], | 28 ], |
28 'direct_dependent_settings': { | 29 'direct_dependent_settings': { |
29 'include_dirs': [ | 30 'include_dirs': [ |
30 'objc/Framework/Classes', | 31 'objc/Framework/Classes', |
31 'objc/Framework/Headers', | 32 'objc/Framework/Headers', |
| 33 'objc/Framework/Headers/WebRTC', |
32 ], | 34 ], |
33 }, | 35 }, |
34 'sources': [ | 36 'sources': [ |
35 'objc/Framework/Classes/NSString+StdString.h', | 37 'objc/Framework/Classes/NSString+StdString.h', |
36 'objc/Framework/Classes/NSString+StdString.mm', | 38 'objc/Framework/Classes/NSString+StdString.mm', |
37 'objc/Framework/Classes/RTCDispatcher.m', | 39 'objc/Framework/Classes/RTCDispatcher.m', |
38 'objc/Framework/Classes/RTCFieldTrials.mm', | 40 'objc/Framework/Classes/RTCFieldTrials.mm', |
39 'objc/Framework/Classes/RTCLogging.mm', | 41 'objc/Framework/Classes/RTCLogging.mm', |
40 'objc/Framework/Classes/RTCMetrics.mm', | 42 'objc/Framework/Classes/RTCMetrics.mm', |
41 'objc/Framework/Classes/RTCMetricsSampleInfo+Private.h', | 43 'objc/Framework/Classes/RTCMetricsSampleInfo+Private.h', |
(...skipping 274 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
316 'mac_framework_headers!': [ | 318 'mac_framework_headers!': [ |
317 'objc/Framework/Headers/WebRTC/RTCFileLogger.h', | 319 'objc/Framework/Headers/WebRTC/RTCFileLogger.h', |
318 ], | 320 ], |
319 }], | 321 }], |
320 ], # conditions | 322 ], # conditions |
321 }, # rtc_sdk_framework_objc | 323 }, # rtc_sdk_framework_objc |
322 ], # targets | 324 ], # targets |
323 }], # OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7") | 325 }], # OS=="ios" or (OS=="mac" and mac_deployment_target=="10.7") |
324 ], | 326 ], |
325 } | 327 } |
OLD | NEW |