OLD | NEW |
1 # Copyright (c) 2012 The WebRTC Project Authors. All rights reserved. | 1 # Copyright (c) 2012 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 'includes': [ | 9 'includes': [ |
10 '../talk/build/common.gypi', | 10 '../talk/build/common.gypi', |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
131 }, # target peerconnection_client | 131 }, # target peerconnection_client |
132 ], # targets | 132 ], # targets |
133 }], # OS=="linux" or OS=="win" | 133 }], # OS=="linux" or OS=="win" |
134 | 134 |
135 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { | 135 ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { |
136 'targets': [ | 136 'targets': [ |
137 { | 137 { |
138 'target_name': 'apprtc_common', | 138 'target_name': 'apprtc_common', |
139 'type': 'static_library', | 139 'type': 'static_library', |
140 'dependencies': [ | 140 'dependencies': [ |
| 141 '<(webrtc_root)/base/base.gyp:rtc_base_objc', |
141 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_defa
ult', | 142 '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_defa
ult', |
142 '../talk/libjingle.gyp:libjingle_peerconnection_objc', | 143 '../talk/libjingle.gyp:libjingle_peerconnection_objc', |
143 ], | 144 ], |
144 'sources': [ | 145 'sources': [ |
145 'examples/objc/AppRTCDemo/common/ARDUtilities.h', | 146 'examples/objc/AppRTCDemo/common/ARDUtilities.h', |
146 'examples/objc/AppRTCDemo/common/ARDUtilities.m', | 147 'examples/objc/AppRTCDemo/common/ARDUtilities.m', |
147 ], | 148 ], |
148 'include_dirs': [ | 149 'include_dirs': [ |
149 'examples/objc/AppRTCDemo/common', | 150 'examples/objc/AppRTCDemo/common', |
150 ], | 151 ], |
(...skipping 248 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
399 'apk_name': 'AppRTCDemoTest', | 400 'apk_name': 'AppRTCDemoTest', |
400 'java_in_dir': 'examples/androidtests', | 401 'java_in_dir': 'examples/androidtests', |
401 'is_test_apk': 1, | 402 'is_test_apk': 1, |
402 }, | 403 }, |
403 'includes': [ '../build/java_apk.gypi' ], | 404 'includes': [ '../build/java_apk.gypi' ], |
404 }, | 405 }, |
405 ], # targets | 406 ], # targets |
406 }], # OS=="android" | 407 }], # OS=="android" |
407 ], | 408 ], |
408 } | 409 } |
OLD | NEW |