Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 1 | # Copyright (c) 2012 The WebRTC Project Authors. All rights reserved. |
henrike@webrtc.org | 451745e | 2013-12-12 16:55:37 +0000 | [diff] [blame] | 2 | # |
| 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 |
| 5 | # tree. An additional intellectual property rights grant can be found |
| 6 | # in the file PATENTS. All contributing project authors may |
| 7 | # be found in the AUTHORS file in the root of the source tree. |
| 8 | { |
henrike@webrtc.org | 451745e | 2013-12-12 16:55:37 +0000 | [diff] [blame] | 9 | 'conditions': [ |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 10 | ['OS=="linux" or OS=="win"', { |
| 11 | 'targets': [ |
| 12 | { |
tkchin | bad7b09 | 2016-03-11 20:45:16 -0800 | [diff] [blame] | 13 | 'target_name': 'relayserver', |
| 14 | 'type': 'executable', |
| 15 | 'dependencies': [ |
| 16 | '<(webrtc_root)/base/base.gyp:rtc_base_approved', |
| 17 | '<(webrtc_root)/pc/pc.gyp:rtc_pc', |
| 18 | ], |
| 19 | 'sources': [ |
| 20 | 'examples/relayserver/relayserver_main.cc', |
| 21 | ], |
| 22 | }, # target relayserver |
| 23 | { |
| 24 | 'target_name': 'stunserver', |
| 25 | 'type': 'executable', |
| 26 | 'dependencies': [ |
| 27 | '<(webrtc_root)/base/base.gyp:rtc_base_approved', |
| 28 | '<(webrtc_root)/pc/pc.gyp:rtc_pc', |
| 29 | ], |
| 30 | 'sources': [ |
| 31 | 'examples/stunserver/stunserver_main.cc', |
| 32 | ], |
| 33 | }, # target stunserver |
| 34 | { |
| 35 | 'target_name': 'turnserver', |
| 36 | 'type': 'executable', |
| 37 | 'dependencies': [ |
| 38 | '<(webrtc_root)/base/base.gyp:rtc_base_approved', |
| 39 | '<(webrtc_root)/pc/pc.gyp:rtc_pc', |
| 40 | ], |
| 41 | 'sources': [ |
| 42 | 'examples/turnserver/turnserver_main.cc', |
| 43 | ], |
| 44 | }, # target turnserver |
| 45 | { |
| 46 | 'target_name': 'peerconnection_server', |
| 47 | 'type': 'executable', |
| 48 | 'sources': [ |
| 49 | 'examples/peerconnection/server/data_socket.cc', |
| 50 | 'examples/peerconnection/server/data_socket.h', |
| 51 | 'examples/peerconnection/server/main.cc', |
| 52 | 'examples/peerconnection/server/peer_channel.cc', |
| 53 | 'examples/peerconnection/server/peer_channel.h', |
| 54 | 'examples/peerconnection/server/utils.cc', |
| 55 | 'examples/peerconnection/server/utils.h', |
| 56 | ], |
| 57 | 'dependencies': [ |
| 58 | '<(webrtc_root)/base/base.gyp:rtc_base_approved', |
| 59 | '<(webrtc_root)/common.gyp:webrtc_common', |
| 60 | '<(webrtc_root)/tools/internal_tools.gyp:command_line_parser', |
| 61 | ], |
| 62 | # TODO(ronghuawu): crbug.com/167187 fix size_t to int truncations. |
| 63 | 'msvs_disabled_warnings': [ 4309, ], |
| 64 | }, # target peerconnection_server |
| 65 | { |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 66 | 'target_name': 'peerconnection_client', |
| 67 | 'type': 'executable', |
| 68 | 'sources': [ |
| 69 | 'examples/peerconnection/client/conductor.cc', |
| 70 | 'examples/peerconnection/client/conductor.h', |
| 71 | 'examples/peerconnection/client/defaults.cc', |
| 72 | 'examples/peerconnection/client/defaults.h', |
| 73 | 'examples/peerconnection/client/peer_connection_client.cc', |
| 74 | 'examples/peerconnection/client/peer_connection_client.h', |
| 75 | ], |
| 76 | 'dependencies': [ |
Henrik Kjellander | 15583c1 | 2016-02-10 10:53:12 +0100 | [diff] [blame] | 77 | 'api/api.gyp:libjingle_peerconnection', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 78 | '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_default', |
kjellander | 98bba39 | 2016-06-01 05:28:54 -0700 | [diff] [blame] | 79 | '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 80 | ], |
| 81 | 'conditions': [ |
| 82 | ['build_json==1', { |
| 83 | 'dependencies': [ |
| 84 | '<(DEPTH)/third_party/jsoncpp/jsoncpp.gyp:jsoncpp', |
| 85 | ], |
| 86 | }], |
| 87 | # TODO(ronghuawu): Move these files to a win/ directory then they |
| 88 | # can be excluded automatically. |
| 89 | ['OS=="win"', { |
| 90 | 'sources': [ |
| 91 | 'examples/peerconnection/client/flagdefs.h', |
| 92 | 'examples/peerconnection/client/main.cc', |
| 93 | 'examples/peerconnection/client/main_wnd.cc', |
| 94 | 'examples/peerconnection/client/main_wnd.h', |
| 95 | ], |
| 96 | 'msvs_settings': { |
| 97 | 'VCLinkerTool': { |
| 98 | 'SubSystem': '2', # Windows |
| 99 | }, |
| 100 | }, |
| 101 | }], # OS=="win" |
kjellander | 7cae30c | 2015-12-16 14:05:29 -0800 | [diff] [blame] | 102 | ['OS=="win" and clang==1', { |
| 103 | 'msvs_settings': { |
| 104 | 'VCCLCompilerTool': { |
| 105 | 'AdditionalOptions': [ |
| 106 | # Disable warnings failing when compiling with Clang on Windows. |
| 107 | # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366 |
| 108 | '-Wno-reorder', |
| 109 | '-Wno-unused-function', |
| 110 | ], |
| 111 | }, |
| 112 | }, |
| 113 | }], # OS=="win" and clang==1 |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 114 | ['OS=="linux"', { |
| 115 | 'sources': [ |
| 116 | 'examples/peerconnection/client/linux/main.cc', |
| 117 | 'examples/peerconnection/client/linux/main_wnd.cc', |
| 118 | 'examples/peerconnection/client/linux/main_wnd.h', |
| 119 | ], |
| 120 | 'cflags': [ |
| 121 | '<!@(pkg-config --cflags glib-2.0 gobject-2.0 gtk+-2.0)', |
| 122 | ], |
| 123 | 'link_settings': { |
| 124 | 'ldflags': [ |
| 125 | '<!@(pkg-config --libs-only-L --libs-only-other glib-2.0' |
| 126 | ' gobject-2.0 gthread-2.0 gtk+-2.0)', |
| 127 | ], |
| 128 | 'libraries': [ |
| 129 | '<!@(pkg-config --libs-only-l glib-2.0 gobject-2.0' |
| 130 | ' gthread-2.0 gtk+-2.0)', |
| 131 | '-lX11', |
| 132 | '-lXcomposite', |
| 133 | '-lXext', |
| 134 | '-lXrender', |
| 135 | ], |
| 136 | }, |
| 137 | }], # OS=="linux" |
Henrik Kjellander | 235aaa7 | 2016-02-18 21:52:21 +0100 | [diff] [blame] | 138 | ['OS=="linux" and target_arch=="ia32"', { |
| 139 | 'cflags': [ |
| 140 | '-Wno-sentinel', |
| 141 | ], |
| 142 | }], # OS=="linux" and target_arch=="ia32" |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 143 | ], # conditions |
| 144 | }, # target peerconnection_client |
| 145 | ], # targets |
| 146 | }], # OS=="linux" or OS=="win" |
| 147 | |
tkchin | 7635684 | 2015-12-02 16:42:18 -0800 | [diff] [blame] | 148 | ['OS=="ios" or (OS=="mac" and target_arch!="ia32")', { |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 149 | 'targets': [ |
| 150 | { |
| 151 | 'target_name': 'apprtc_common', |
| 152 | 'type': 'static_library', |
| 153 | 'dependencies': [ |
tkchin | 9eeb624 | 2016-04-27 01:54:20 -0700 | [diff] [blame] | 154 | '<(webrtc_root)/sdk/sdk.gyp:rtc_sdk_common_objc', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 155 | '<(webrtc_root)/system_wrappers/system_wrappers.gyp:field_trial_default', |
kjellander | 98bba39 | 2016-06-01 05:28:54 -0700 | [diff] [blame] | 156 | '<(webrtc_root)/system_wrappers/system_wrappers.gyp:metrics_default', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 157 | ], |
| 158 | 'sources': [ |
| 159 | 'examples/objc/AppRTCDemo/common/ARDUtilities.h', |
| 160 | 'examples/objc/AppRTCDemo/common/ARDUtilities.m', |
| 161 | ], |
| 162 | 'include_dirs': [ |
| 163 | 'examples/objc/AppRTCDemo/common', |
| 164 | ], |
| 165 | 'direct_dependent_settings': { |
| 166 | 'include_dirs': [ |
| 167 | 'examples/objc/AppRTCDemo/common', |
| 168 | ], |
| 169 | }, |
| 170 | 'conditions': [ |
kjellander@webrtc.org | 66a9928 | 2016-02-18 20:30:14 +0100 | [diff] [blame] | 171 | ['OS=="ios"', { |
| 172 | 'xcode_settings': { |
| 173 | 'WARNING_CFLAGS': [ |
| 174 | # Suppress compiler warnings about deprecated that triggered |
| 175 | # when moving from ios_deployment_target 7.0 to 9.0. |
| 176 | # See webrtc:5549 for more details. |
| 177 | '-Wno-deprecated-declarations', |
| 178 | ], |
| 179 | }, |
| 180 | }], |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 181 | ['OS=="mac"', { |
| 182 | 'xcode_settings': { |
| 183 | 'MACOSX_DEPLOYMENT_TARGET' : '10.8', |
| 184 | }, |
| 185 | }], |
| 186 | ], |
hjon | 79858f8 | 2016-03-13 22:08:26 -0700 | [diff] [blame] | 187 | 'xcode_settings': { |
| 188 | 'CLANG_ENABLE_OBJC_ARC': 'YES', |
| 189 | }, |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 190 | 'link_settings': { |
| 191 | 'xcode_settings': { |
| 192 | 'OTHER_LDFLAGS': [ |
| 193 | '-framework QuartzCore', |
| 194 | ], |
| 195 | }, |
| 196 | }, |
| 197 | }, |
| 198 | { |
| 199 | 'target_name': 'apprtc_signaling', |
| 200 | 'type': 'static_library', |
| 201 | 'dependencies': [ |
tkchin | 9eeb624 | 2016-04-27 01:54:20 -0700 | [diff] [blame] | 202 | '<(webrtc_root)/sdk/sdk.gyp:rtc_sdk_peerconnection_objc', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 203 | 'apprtc_common', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 204 | 'socketrocket', |
| 205 | ], |
| 206 | 'sources': [ |
| 207 | 'examples/objc/AppRTCDemo/ARDAppClient.h', |
| 208 | 'examples/objc/AppRTCDemo/ARDAppClient.m', |
| 209 | 'examples/objc/AppRTCDemo/ARDAppClient+Internal.h', |
| 210 | 'examples/objc/AppRTCDemo/ARDAppEngineClient.h', |
| 211 | 'examples/objc/AppRTCDemo/ARDAppEngineClient.m', |
| 212 | 'examples/objc/AppRTCDemo/ARDBitrateTracker.h', |
| 213 | 'examples/objc/AppRTCDemo/ARDBitrateTracker.m', |
| 214 | 'examples/objc/AppRTCDemo/ARDCEODTURNClient.h', |
| 215 | 'examples/objc/AppRTCDemo/ARDCEODTURNClient.m', |
| 216 | 'examples/objc/AppRTCDemo/ARDJoinResponse.h', |
| 217 | 'examples/objc/AppRTCDemo/ARDJoinResponse.m', |
| 218 | 'examples/objc/AppRTCDemo/ARDJoinResponse+Internal.h', |
| 219 | 'examples/objc/AppRTCDemo/ARDMessageResponse.h', |
| 220 | 'examples/objc/AppRTCDemo/ARDMessageResponse.m', |
| 221 | 'examples/objc/AppRTCDemo/ARDMessageResponse+Internal.h', |
| 222 | 'examples/objc/AppRTCDemo/ARDRoomServerClient.h', |
| 223 | 'examples/objc/AppRTCDemo/ARDSDPUtils.h', |
| 224 | 'examples/objc/AppRTCDemo/ARDSDPUtils.m', |
| 225 | 'examples/objc/AppRTCDemo/ARDSignalingChannel.h', |
| 226 | 'examples/objc/AppRTCDemo/ARDSignalingMessage.h', |
| 227 | 'examples/objc/AppRTCDemo/ARDSignalingMessage.m', |
| 228 | 'examples/objc/AppRTCDemo/ARDStatsBuilder.h', |
| 229 | 'examples/objc/AppRTCDemo/ARDStatsBuilder.m', |
| 230 | 'examples/objc/AppRTCDemo/ARDTURNClient.h', |
| 231 | 'examples/objc/AppRTCDemo/ARDWebSocketChannel.h', |
| 232 | 'examples/objc/AppRTCDemo/ARDWebSocketChannel.m', |
hjon | 79858f8 | 2016-03-13 22:08:26 -0700 | [diff] [blame] | 233 | 'examples/objc/AppRTCDemo/RTCIceCandidate+JSON.h', |
| 234 | 'examples/objc/AppRTCDemo/RTCIceCandidate+JSON.m', |
| 235 | 'examples/objc/AppRTCDemo/RTCIceServer+JSON.h', |
| 236 | 'examples/objc/AppRTCDemo/RTCIceServer+JSON.m', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 237 | 'examples/objc/AppRTCDemo/RTCMediaConstraints+JSON.h', |
| 238 | 'examples/objc/AppRTCDemo/RTCMediaConstraints+JSON.m', |
| 239 | 'examples/objc/AppRTCDemo/RTCSessionDescription+JSON.h', |
| 240 | 'examples/objc/AppRTCDemo/RTCSessionDescription+JSON.m', |
| 241 | ], |
| 242 | 'include_dirs': [ |
| 243 | 'examples/objc/AppRTCDemo', |
| 244 | ], |
| 245 | 'direct_dependent_settings': { |
| 246 | 'include_dirs': [ |
| 247 | 'examples/objc/AppRTCDemo', |
| 248 | ], |
| 249 | }, |
| 250 | 'export_dependent_settings': [ |
tkchin | 9eeb624 | 2016-04-27 01:54:20 -0700 | [diff] [blame] | 251 | '<(webrtc_root)/sdk/sdk.gyp:rtc_sdk_peerconnection_objc', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 252 | ], |
| 253 | 'conditions': [ |
kjellander@webrtc.org | 66a9928 | 2016-02-18 20:30:14 +0100 | [diff] [blame] | 254 | ['OS=="ios"', { |
| 255 | 'xcode_settings': { |
| 256 | 'WARNING_CFLAGS': [ |
| 257 | # Suppress compiler warnings about deprecated that triggered |
| 258 | # when moving from ios_deployment_target 7.0 to 9.0. |
| 259 | # See webrtc:5549 for more details. |
| 260 | '-Wno-deprecated-declarations', |
| 261 | ], |
| 262 | }, |
| 263 | }], |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 264 | ['OS=="mac"', { |
| 265 | 'xcode_settings': { |
| 266 | 'MACOSX_DEPLOYMENT_TARGET' : '10.8', |
| 267 | }, |
| 268 | }], |
| 269 | ], |
hjon | 79858f8 | 2016-03-13 22:08:26 -0700 | [diff] [blame] | 270 | 'xcode_settings': { |
| 271 | 'CLANG_ENABLE_OBJC_ARC': 'YES', |
| 272 | }, |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 273 | }, |
| 274 | { |
| 275 | 'target_name': 'AppRTCDemo', |
| 276 | 'type': 'executable', |
| 277 | 'product_name': 'AppRTCDemo', |
| 278 | 'mac_bundle': 1, |
| 279 | 'dependencies': [ |
| 280 | 'apprtc_common', |
| 281 | 'apprtc_signaling', |
| 282 | ], |
| 283 | 'conditions': [ |
| 284 | ['OS=="ios"', { |
| 285 | 'mac_bundle_resources': [ |
tkchin | 0ce3bf9 | 2016-03-12 16:52:04 -0800 | [diff] [blame] | 286 | 'examples/objc/AppRTCDemo/ios/resources/Roboto-Regular.ttf', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 287 | 'examples/objc/AppRTCDemo/ios/resources/iPhone5@2x.png', |
| 288 | 'examples/objc/AppRTCDemo/ios/resources/iPhone6@2x.png', |
| 289 | 'examples/objc/AppRTCDemo/ios/resources/iPhone6p@3x.png', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 290 | 'examples/objc/AppRTCDemo/ios/resources/ic_call_end_black_24dp.png', |
| 291 | 'examples/objc/AppRTCDemo/ios/resources/ic_call_end_black_24dp@2x.png', |
| 292 | 'examples/objc/AppRTCDemo/ios/resources/ic_clear_black_24dp.png', |
| 293 | 'examples/objc/AppRTCDemo/ios/resources/ic_clear_black_24dp@2x.png', |
tkchin | 0ce3bf9 | 2016-03-12 16:52:04 -0800 | [diff] [blame] | 294 | 'examples/objc/AppRTCDemo/ios/resources/ic_surround_sound_black_24dp.png', |
| 295 | 'examples/objc/AppRTCDemo/ios/resources/ic_surround_sound_black_24dp@2x.png', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 296 | 'examples/objc/AppRTCDemo/ios/resources/ic_switch_video_black_24dp.png', |
| 297 | 'examples/objc/AppRTCDemo/ios/resources/ic_switch_video_black_24dp@2x.png', |
Zeke Chin | 615fabb | 2016-02-24 10:58:52 -0800 | [diff] [blame] | 298 | 'examples/objc/AppRTCDemo/ios/resources/mozart.mp3', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 299 | 'examples/objc/Icon.png', |
| 300 | ], |
| 301 | 'sources': [ |
| 302 | 'examples/objc/AppRTCDemo/ios/ARDAppDelegate.h', |
| 303 | 'examples/objc/AppRTCDemo/ios/ARDAppDelegate.m', |
| 304 | 'examples/objc/AppRTCDemo/ios/ARDMainView.h', |
| 305 | 'examples/objc/AppRTCDemo/ios/ARDMainView.m', |
| 306 | 'examples/objc/AppRTCDemo/ios/ARDMainViewController.h', |
| 307 | 'examples/objc/AppRTCDemo/ios/ARDMainViewController.m', |
| 308 | 'examples/objc/AppRTCDemo/ios/ARDStatsView.h', |
| 309 | 'examples/objc/AppRTCDemo/ios/ARDStatsView.m', |
| 310 | 'examples/objc/AppRTCDemo/ios/ARDVideoCallView.h', |
| 311 | 'examples/objc/AppRTCDemo/ios/ARDVideoCallView.m', |
| 312 | 'examples/objc/AppRTCDemo/ios/ARDVideoCallViewController.h', |
| 313 | 'examples/objc/AppRTCDemo/ios/ARDVideoCallViewController.m', |
| 314 | 'examples/objc/AppRTCDemo/ios/AppRTCDemo-Prefix.pch', |
| 315 | 'examples/objc/AppRTCDemo/ios/UIImage+ARDUtilities.h', |
| 316 | 'examples/objc/AppRTCDemo/ios/UIImage+ARDUtilities.m', |
| 317 | 'examples/objc/AppRTCDemo/ios/main.m', |
| 318 | ], |
| 319 | 'xcode_settings': { |
| 320 | 'INFOPLIST_FILE': 'examples/objc/AppRTCDemo/ios/Info.plist', |
kjellander@webrtc.org | 66a9928 | 2016-02-18 20:30:14 +0100 | [diff] [blame] | 321 | 'WARNING_CFLAGS': [ |
| 322 | # Suppress compiler warnings about deprecated that triggered |
| 323 | # when moving from ios_deployment_target 7.0 to 9.0. |
| 324 | # See webrtc:5549 for more details. |
| 325 | '-Wno-deprecated-declarations', |
| 326 | ], |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 327 | }, |
| 328 | }], |
| 329 | ['OS=="mac"', { |
| 330 | 'sources': [ |
| 331 | 'examples/objc/AppRTCDemo/mac/APPRTCAppDelegate.h', |
| 332 | 'examples/objc/AppRTCDemo/mac/APPRTCAppDelegate.m', |
| 333 | 'examples/objc/AppRTCDemo/mac/APPRTCViewController.h', |
| 334 | 'examples/objc/AppRTCDemo/mac/APPRTCViewController.m', |
| 335 | 'examples/objc/AppRTCDemo/mac/main.m', |
| 336 | ], |
| 337 | 'xcode_settings': { |
| 338 | 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO', |
| 339 | 'INFOPLIST_FILE': 'examples/objc/AppRTCDemo/mac/Info.plist', |
| 340 | 'MACOSX_DEPLOYMENT_TARGET' : '10.8', |
| 341 | 'OTHER_LDFLAGS': [ |
| 342 | '-framework AVFoundation', |
| 343 | ], |
| 344 | }, |
| 345 | }], |
| 346 | ['target_arch=="ia32"', { |
| 347 | 'dependencies' : [ |
| 348 | '<(DEPTH)/testing/iossim/iossim.gyp:iossim#host', |
| 349 | ], |
| 350 | }], |
| 351 | ], |
hjon | 79858f8 | 2016-03-13 22:08:26 -0700 | [diff] [blame] | 352 | 'xcode_settings': { |
| 353 | 'CLANG_ENABLE_OBJC_ARC': 'YES', |
| 354 | }, |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 355 | }, # target AppRTCDemo |
| 356 | { |
| 357 | # TODO(tkchin): move this into the real third party location and |
| 358 | # have it mirrored on chrome infra. |
| 359 | 'target_name': 'socketrocket', |
| 360 | 'type': 'static_library', |
| 361 | 'sources': [ |
| 362 | 'examples/objc/AppRTCDemo/third_party/SocketRocket/SRWebSocket.h', |
| 363 | 'examples/objc/AppRTCDemo/third_party/SocketRocket/SRWebSocket.m', |
| 364 | ], |
| 365 | 'conditions': [ |
| 366 | ['OS=="mac"', { |
| 367 | 'xcode_settings': { |
| 368 | # SocketRocket autosynthesizes some properties. Disable the |
| 369 | # warning so we can compile successfully. |
| 370 | 'CLANG_WARN_OBJC_MISSING_PROPERTY_SYNTHESIS': 'NO', |
| 371 | 'MACOSX_DEPLOYMENT_TARGET' : '10.8', |
| 372 | # SRWebSocket.m uses code with partial availability. |
| 373 | # https://code.google.com/p/webrtc/issues/detail?id=4695 |
| 374 | 'WARNING_CFLAGS!': ['-Wpartial-availability'], |
| 375 | }, |
| 376 | }], |
| 377 | ], |
| 378 | 'direct_dependent_settings': { |
| 379 | 'include_dirs': [ |
| 380 | 'examples/objc/AppRTCDemo/third_party/SocketRocket', |
| 381 | ], |
| 382 | }, |
| 383 | 'xcode_settings': { |
| 384 | 'CLANG_ENABLE_OBJC_ARC': 'YES', |
| 385 | 'WARNING_CFLAGS': [ |
| 386 | '-Wno-deprecated-declarations', |
tkchin | 7635684 | 2015-12-02 16:42:18 -0800 | [diff] [blame] | 387 | '-Wno-nonnull', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 388 | ], |
| 389 | }, |
| 390 | 'link_settings': { |
| 391 | 'xcode_settings': { |
| 392 | 'OTHER_LDFLAGS': [ |
| 393 | '-framework CFNetwork', |
| 394 | '-licucore', |
| 395 | ], |
| 396 | }, |
| 397 | } |
| 398 | }, # target socketrocket |
| 399 | ], # targets |
tkchin | 7635684 | 2015-12-02 16:42:18 -0800 | [diff] [blame] | 400 | }], # OS=="ios" or (OS=="mac" and target_arch!="ia32") |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 401 | |
henrike@webrtc.org | 451745e | 2013-12-12 16:55:37 +0000 | [diff] [blame] | 402 | ['OS=="android"', { |
| 403 | 'targets': [ |
| 404 | { |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 405 | 'target_name': 'AppRTCDemo', |
henrike@webrtc.org | 451745e | 2013-12-12 16:55:37 +0000 | [diff] [blame] | 406 | 'type': 'none', |
| 407 | 'dependencies': [ |
kjellander | 442e6ee | 2016-06-20 01:34:06 -0700 | [diff] [blame] | 408 | 'api/api_java.gyp:libjingle_peerconnection_java', |
henrike@webrtc.org | 451745e | 2013-12-12 16:55:37 +0000 | [diff] [blame] | 409 | ], |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 410 | 'variables': { |
| 411 | 'apk_name': 'AppRTCDemo', |
| 412 | 'java_in_dir': 'examples/androidapp', |
| 413 | 'has_java_resources': 1, |
| 414 | 'resource_dir': 'examples/androidapp/res', |
| 415 | 'R_package': 'org.appspot.apprtc', |
| 416 | 'R_package_relpath': 'org/appspot/apprtc', |
| 417 | 'input_jars_paths': [ |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 418 | 'examples/androidapp/third_party/autobanh/lib/autobanh.jar', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 419 | ], |
| 420 | 'library_dexed_jars_paths': [ |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 421 | 'examples/androidapp/third_party/autobanh/lib/autobanh.jar', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 422 | ], |
| 423 | 'native_lib_target': 'libjingle_peerconnection_so', |
| 424 | 'add_to_dependents_classpaths':1, |
| 425 | }, |
| 426 | 'includes': [ '../build/java_apk.gypi' ], |
| 427 | }, # target AppRTCDemo |
| 428 | |
| 429 | { |
| 430 | # AppRTCDemo creates a .jar as a side effect. Any java targets |
| 431 | # that need that .jar in their classpath should depend on this target, |
| 432 | # AppRTCDemo_apk. Dependents of AppRTCDemo_apk receive its |
| 433 | # jar path in the variable 'apk_output_jar_path'. |
| 434 | # This target should only be used by targets which instrument |
| 435 | # AppRTCDemo_apk. |
| 436 | 'target_name': 'AppRTCDemo_apk', |
| 437 | 'type': 'none', |
| 438 | 'dependencies': [ |
| 439 | 'AppRTCDemo', |
| 440 | ], |
| 441 | 'includes': [ '../build/apk_fake_jar.gypi' ], |
| 442 | }, # target AppRTCDemo_apk |
| 443 | |
| 444 | { |
| 445 | 'target_name': 'AppRTCDemoTest', |
| 446 | 'type': 'none', |
| 447 | 'dependencies': [ |
| 448 | 'AppRTCDemo_apk', |
| 449 | ], |
| 450 | 'variables': { |
| 451 | 'apk_name': 'AppRTCDemoTest', |
| 452 | 'java_in_dir': 'examples/androidtests', |
| 453 | 'is_test_apk': 1, |
agrieve | babf8ee | 2016-04-08 06:54:23 -0700 | [diff] [blame] | 454 | 'test_type': 'instrumentation', |
| 455 | 'test_runner_path': '<(DEPTH)/webrtc/build/android/test_runner.py', |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 456 | }, |
agrieve | babf8ee | 2016-04-08 06:54:23 -0700 | [diff] [blame] | 457 | 'includes': [ |
| 458 | '../build/java_apk.gypi', |
| 459 | '../build/android/test_runner.gypi', |
| 460 | ], |
henrike@webrtc.org | 451745e | 2013-12-12 16:55:37 +0000 | [diff] [blame] | 461 | }, |
Peter Boström | fa566d6 | 2015-11-11 12:11:15 +0000 | [diff] [blame] | 462 | ], # targets |
| 463 | }], # OS=="android" |
henrike@webrtc.org | 451745e | 2013-12-12 16:55:37 +0000 | [diff] [blame] | 464 | ], |
| 465 | } |