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 181 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
192 '-framework QuartzCore', | 192 '-framework QuartzCore', |
193 ], | 193 ], |
194 }, | 194 }, |
195 }, | 195 }, |
196 }, | 196 }, |
197 { | 197 { |
198 'target_name': 'apprtc_signaling', | 198 'target_name': 'apprtc_signaling', |
199 'type': 'static_library', | 199 'type': 'static_library', |
200 'dependencies': [ | 200 'dependencies': [ |
201 'apprtc_common', | 201 'apprtc_common', |
| 202 'base/base.gyp:rtc_base_objc', |
202 '../talk/app/webrtc/legacy_objc_api.gyp:libjingle_peerconnection_obj
c', | 203 '../talk/app/webrtc/legacy_objc_api.gyp:libjingle_peerconnection_obj
c', |
203 'socketrocket', | 204 'socketrocket', |
204 ], | 205 ], |
205 'sources': [ | 206 'sources': [ |
206 'examples/objc/AppRTCDemo/ARDAppClient.h', | 207 'examples/objc/AppRTCDemo/ARDAppClient.h', |
207 'examples/objc/AppRTCDemo/ARDAppClient.m', | 208 'examples/objc/AppRTCDemo/ARDAppClient.m', |
208 'examples/objc/AppRTCDemo/ARDAppClient+Internal.h', | 209 'examples/objc/AppRTCDemo/ARDAppClient+Internal.h', |
209 'examples/objc/AppRTCDemo/ARDAppEngineClient.h', | 210 'examples/objc/AppRTCDemo/ARDAppEngineClient.h', |
210 'examples/objc/AppRTCDemo/ARDAppEngineClient.m', | 211 'examples/objc/AppRTCDemo/ARDAppEngineClient.m', |
211 'examples/objc/AppRTCDemo/ARDBitrateTracker.h', | 212 'examples/objc/AppRTCDemo/ARDBitrateTracker.h', |
(...skipping 28 matching lines...) Expand all Loading... |
240 ], | 241 ], |
241 'include_dirs': [ | 242 'include_dirs': [ |
242 'examples/objc/AppRTCDemo', | 243 'examples/objc/AppRTCDemo', |
243 ], | 244 ], |
244 'direct_dependent_settings': { | 245 'direct_dependent_settings': { |
245 'include_dirs': [ | 246 'include_dirs': [ |
246 'examples/objc/AppRTCDemo', | 247 'examples/objc/AppRTCDemo', |
247 ], | 248 ], |
248 }, | 249 }, |
249 'export_dependent_settings': [ | 250 'export_dependent_settings': [ |
| 251 'base/base.gyp:rtc_base_objc', |
250 '../talk/app/webrtc/legacy_objc_api.gyp:libjingle_peerconnection_obj
c', | 252 '../talk/app/webrtc/legacy_objc_api.gyp:libjingle_peerconnection_obj
c', |
251 ], | 253 ], |
252 'conditions': [ | 254 'conditions': [ |
253 ['OS=="ios"', { | 255 ['OS=="ios"', { |
254 'xcode_settings': { | 256 'xcode_settings': { |
255 'WARNING_CFLAGS': [ | 257 'WARNING_CFLAGS': [ |
256 # Suppress compiler warnings about deprecated that triggered | 258 # Suppress compiler warnings about deprecated that triggered |
257 # when moving from ios_deployment_target 7.0 to 9.0. | 259 # when moving from ios_deployment_target 7.0 to 9.0. |
258 # See webrtc:5549 for more details. | 260 # See webrtc:5549 for more details. |
259 '-Wno-deprecated-declarations', | 261 '-Wno-deprecated-declarations', |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
442 'apk_name': 'AppRTCDemoTest', | 444 'apk_name': 'AppRTCDemoTest', |
443 'java_in_dir': 'examples/androidtests', | 445 'java_in_dir': 'examples/androidtests', |
444 'is_test_apk': 1, | 446 'is_test_apk': 1, |
445 }, | 447 }, |
446 'includes': [ '../build/java_apk.gypi' ], | 448 'includes': [ '../build/java_apk.gypi' ], |
447 }, | 449 }, |
448 ], # targets | 450 ], # targets |
449 }], # OS=="android" | 451 }], # OS=="android" |
450 ], | 452 ], |
451 } | 453 } |
OLD | NEW |