blob: 16c9faebd38abb23caf51e827564c6284555bc04 [file] [log] [blame]
Sami Kalliomaki9c0c75b2016-06-29 12:55:001# Copyright (c) 2016 The WebRTC project authors. All Rights Reserved.
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
mbonadei9aa3f0a2017-01-24 14:58:229import("../webrtc.gni")
Qiang Chen43fb9122017-12-20 18:47:3610
Sami Kalliomaki9c0c75b2016-06-29 12:55:0011if (is_android) {
12 import("//build/config/android/config.gni")
13 import("//build/config/android/rules.gni")
tkchin2ddfdba2016-08-08 04:37:4514} else if (is_mac) {
15 import("//build/config/mac/rules.gni")
16} else if (is_ios) {
17 import("//build/config/ios/rules.gni")
Sami Kalliomaki9c0c75b2016-06-29 12:55:0018}
19
20group("examples") {
kjellander6ceab082016-10-28 12:44:0321 # This target shall build all targets in examples.
22 testonly = true
Mirko Bonadei1a339c32017-12-14 12:06:1023 deps = []
Sami Kalliomaki9c0c75b2016-06-29 12:55:0024
tkchin2ddfdba2016-08-08 04:37:4525 if (is_android) {
Mirko Bonadei1a339c32017-12-14 12:06:1026 deps += [
kjellander6ceab082016-10-28 12:44:0327 ":AppRTCMobile",
28 ":AppRTCMobileTest",
mandermoa6069e82017-01-16 10:23:0929 ":AppRTCMobileTestStubbedVideoIO",
kjellander6ceab082016-10-28 12:44:0330 ]
31 }
32
charujainaca3a242016-11-01 10:09:1533 if (!build_with_chromium) {
Mirko Bonadei1a339c32017-12-14 12:06:1034 deps += [ ":stun_prober" ]
charujainaca3a242016-11-01 10:09:1535 }
36
kjellander6ceab082016-10-28 12:44:0337 if (is_ios || (is_mac && target_cpu != "x86")) {
Mirko Bonadei1a339c32017-12-14 12:06:1038 deps += [ ":AppRTCMobile" ]
Sami Kalliomaki9c0c75b2016-06-29 12:55:0039 }
kjellander6ceab082016-10-28 12:44:0340
41 if (is_linux || is_win) {
Mirko Bonadei1a339c32017-12-14 12:06:1042 deps += [
kthelgason0727f152016-08-08 16:03:2343 ":peerconnection_client",
44 ":peerconnection_server",
45 ":relayserver",
46 ":stunserver",
47 ":turnserver",
48 ]
49 }
Sami Kalliomaki9c0c75b2016-06-29 12:55:0050}
51
tkchin2ddfdba2016-08-08 04:37:4552if (is_android) {
Mirko Bonadeifbb3b7d2017-11-07 15:36:3353 rtc_android_apk("AppRTCMobile") {
kjellander1993b1d2017-03-06 08:29:2154 testonly = true
Magnus Jedvertc1815cf2016-09-27 08:10:4155 apk_name = "AppRTCMobile"
Sami Kalliomaki9c0c75b2016-06-29 12:55:0056 android_manifest = "androidapp/AndroidManifest.xml"
57
58 deps = [
Magnus Jedvertc1815cf2016-09-27 08:10:4159 ":AppRTCMobile_javalib",
60 ":AppRTCMobile_resources",
jianjun.zhuc0247402017-07-11 13:20:4561 "../rtc_base:base_java",
Sami Kalliomaki9c0c75b2016-06-29 12:55:0062 "//base:base_java",
Sami Kalliomaki9c0c75b2016-06-29 12:55:0063 ]
64
jianjun.zhuc0247402017-07-11 13:20:4565 shared_libraries = [ "../sdk/android:libjingle_peerconnection_so" ]
Sami Kalliomaki9c0c75b2016-06-29 12:55:0066 }
67
Mirko Bonadeifbb3b7d2017-11-07 15:36:3368 rtc_android_library("AppRTCMobile_javalib") {
kjellander1993b1d2017-03-06 08:29:2169 testonly = true
Mirko Bonadei4f024ef2018-01-04 12:12:0370 android_manifest_for_lint = "androidapp/AndroidManifest.xml"
sakal07a050f2017-02-13 13:58:2771
Sami Kalliomaki9c0c75b2016-06-29 12:55:0072 java_files = [
73 "androidapp/src/org/appspot/apprtc/AppRTCAudioManager.java",
henrikac3c2f312016-12-14 15:36:5674 "androidapp/src/org/appspot/apprtc/AppRTCBluetoothManager.java",
Sami Kalliomaki9c0c75b2016-06-29 12:55:0075 "androidapp/src/org/appspot/apprtc/AppRTCClient.java",
76 "androidapp/src/org/appspot/apprtc/AppRTCProximitySensor.java",
77 "androidapp/src/org/appspot/apprtc/CallActivity.java",
78 "androidapp/src/org/appspot/apprtc/CallFragment.java",
79 "androidapp/src/org/appspot/apprtc/CaptureQualityController.java",
80 "androidapp/src/org/appspot/apprtc/ConnectActivity.java",
81 "androidapp/src/org/appspot/apprtc/CpuMonitor.java",
82 "androidapp/src/org/appspot/apprtc/DirectRTCClient.java",
83 "androidapp/src/org/appspot/apprtc/HudFragment.java",
84 "androidapp/src/org/appspot/apprtc/PeerConnectionClient.java",
Sami Kalliomaki9c0c75b2016-06-29 12:55:0085 "androidapp/src/org/appspot/apprtc/RoomParametersFetcher.java",
86 "androidapp/src/org/appspot/apprtc/SettingsActivity.java",
87 "androidapp/src/org/appspot/apprtc/SettingsFragment.java",
88 "androidapp/src/org/appspot/apprtc/TCPChannelClient.java",
89 "androidapp/src/org/appspot/apprtc/UnhandledExceptionHandler.java",
90 "androidapp/src/org/appspot/apprtc/WebSocketChannelClient.java",
91 "androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java",
92 "androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java",
93 "androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java",
Sami Kalliomaki9c0c75b2016-06-29 12:55:0094 ]
95
96 deps = [
Magnus Jedvertc1815cf2016-09-27 08:10:4197 ":AppRTCMobile_resources",
jianjun.zhuc0247402017-07-11 13:20:4598 "../modules/audio_device:audio_device_java",
99 "../rtc_base:base_java",
100 "../sdk/android:libjingle_peerconnection_java",
101 "../sdk/android:libjingle_peerconnection_metrics_default_java",
102 "androidapp/third_party/autobanh:autobanh_java",
Sami Kalliomaki9c0c75b2016-06-29 12:55:00103 ]
104 }
105
Magnus Jedvertc1815cf2016-09-27 08:10:41106 android_resources("AppRTCMobile_resources") {
kjellander1993b1d2017-03-06 08:29:21107 testonly = true
Sami Kalliomaki9c0c75b2016-06-29 12:55:00108 resource_dirs = [ "androidapp/res" ]
109 custom_package = "org.appspot.apprtc"
110 }
111
Mirko Bonadeifbb3b7d2017-11-07 15:36:33112 rtc_instrumentation_test_apk("AppRTCMobileTest") {
Magnus Jedvertc1815cf2016-09-27 08:10:41113 apk_name = "AppRTCMobileTest"
Sami Kalliomaki9c0c75b2016-06-29 12:55:00114 android_manifest = "androidtests/AndroidManifest.xml"
115
Patrik Höglunda8005cf2017-12-13 15:05:42116 java_files = [
117 "androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java",
118 ]
Sami Kalliomaki9c0c75b2016-06-29 12:55:00119
Magnus Jedvertc1815cf2016-09-27 08:10:41120 apk_under_test = ":AppRTCMobile"
Sami Kalliomaki9c0c75b2016-06-29 12:55:00121
122 deps = [
Magnus Jedvertc1815cf2016-09-27 08:10:41123 ":AppRTCMobile_javalib",
jianjun.zhuc0247402017-07-11 13:20:45124 "../sdk/android:libjingle_peerconnection_java",
sakalcb79d512017-01-11 14:21:26125 "//third_party/android_support_test_runner:runner_java",
126 "//third_party/junit",
Sami Kalliomaki9c0c75b2016-06-29 12:55:00127 ]
128 }
mandermoa6069e82017-01-16 10:23:09129
Mirko Bonadeifbb3b7d2017-11-07 15:36:33130 rtc_instrumentation_test_apk("AppRTCMobileTestStubbedVideoIO") {
mandermoa6069e82017-01-16 10:23:09131 apk_name = "AppRTCMobileTestStubbedVideoIO"
132 android_manifest = "androidtests/AndroidManifest.xml"
133
oprypin30cda5e2017-04-24 11:15:13134 java_files = [ "androidtests/src/org/appspot/apprtc/test/CallActivityStubbedInputOutputTest.java" ]
mandermoa6069e82017-01-16 10:23:09135
136 apk_under_test = ":AppRTCMobile"
137
138 deps = [
139 ":AppRTCMobile_javalib",
jianjun.zhuc0247402017-07-11 13:20:45140 "../sdk/android:libjingle_peerconnection_java",
mandermoa6069e82017-01-16 10:23:09141 "//third_party/android_support_test_runner:rules_java",
142 "//third_party/android_support_test_runner:runner_java",
143 "//third_party/espresso:espresso_all_java",
144 "//third_party/hamcrest:hamcrest_java",
145 "//third_party/junit",
mandermoa6069e82017-01-16 10:23:09146 ]
147
148 data = [
Mirko Bonadei92ea95e2017-09-15 04:47:31149 "../resources/reference_video_640x360_30fps.y4m",
mandermoa6069e82017-01-16 10:23:09150 ]
151 }
Sami Kalliomaki9c0c75b2016-06-29 12:55:00152}
tkchin2ddfdba2016-08-08 04:37:45153
154if (is_ios || (is_mac && target_cpu != "x86")) {
tkchin2ddfdba2016-08-08 04:37:45155 config("apprtc_common_config") {
Magnus Jedvertc1815cf2016-09-27 08:10:41156 include_dirs = [ "objc/AppRTCMobile/common" ]
tkchin2ddfdba2016-08-08 04:37:45157 }
158
kjellanderb62dbbe2016-09-23 07:38:52159 rtc_static_library("apprtc_common") {
kjellander1993b1d2017-03-06 08:29:21160 testonly = true
tkchin2ddfdba2016-08-08 04:37:45161 sources = [
Magnus Jedvertc1815cf2016-09-27 08:10:41162 "objc/AppRTCMobile/common/ARDUtilities.h",
163 "objc/AppRTCMobile/common/ARDUtilities.m",
tkchin2ddfdba2016-08-08 04:37:45164 ]
ehmaldonadoe9cc6862016-09-05 13:10:18165 public_configs = [ ":apprtc_common_config" ]
tkchin2ddfdba2016-08-08 04:37:45166
Kári Tristan Helgason946923a2017-06-02 12:05:56167 if (is_ios) {
kthelgason5901d9d2017-08-16 14:28:03168 deps = [
169 ":AppRTCMobile_ios_frameworks",
Mirko Bonadei1a339c32017-12-14 12:06:10170 "../sdk:common_objc",
171 "../system_wrappers:field_trial_default",
kthelgason5901d9d2017-08-16 14:28:03172 ]
Kári Tristan Helgason946923a2017-06-02 12:05:56173 } else {
kthelgason5901d9d2017-08-16 14:28:03174 deps = [
kthelgason36d658d2017-08-24 12:43:45175 "../sdk:common_objc",
kthelgason5901d9d2017-08-16 14:28:03176 "../system_wrappers:field_trial_default",
177 "../system_wrappers:metrics_default",
178 ]
Kári Tristan Helgason946923a2017-06-02 12:05:56179 }
tkchin2ddfdba2016-08-08 04:37:45180 }
181
182 config("apprtc_signaling_config") {
Magnus Jedvertc1815cf2016-09-27 08:10:41183 include_dirs = [ "objc/AppRTCMobile" ]
tkchin2ddfdba2016-08-08 04:37:45184
185 # GN orders flags on a target before flags from configs. The default config
186 # adds these flags so to cancel them out they need to come from a config and
187 # cannot be on the target directly.
188 cflags = [
189 "-Wno-sign-compare",
190 "-Wno-unused-variable",
191 ]
tkchin2ddfdba2016-08-08 04:37:45192 }
193
kjellanderb62dbbe2016-09-23 07:38:52194 rtc_static_library("apprtc_signaling") {
kjellander1993b1d2017-03-06 08:29:21195 testonly = true
tkchin2ddfdba2016-08-08 04:37:45196 sources = [
Magnus Jedvertc1815cf2016-09-27 08:10:41197 "objc/AppRTCMobile/ARDAppClient+Internal.h",
198 "objc/AppRTCMobile/ARDAppClient.h",
199 "objc/AppRTCMobile/ARDAppClient.m",
200 "objc/AppRTCMobile/ARDAppEngineClient.h",
201 "objc/AppRTCMobile/ARDAppEngineClient.m",
202 "objc/AppRTCMobile/ARDBitrateTracker.h",
203 "objc/AppRTCMobile/ARDBitrateTracker.m",
sakalc522e752017-04-05 19:17:48204 "objc/AppRTCMobile/ARDCaptureController.h",
205 "objc/AppRTCMobile/ARDCaptureController.m",
Magnus Jedvertc1815cf2016-09-27 08:10:41206 "objc/AppRTCMobile/ARDJoinResponse+Internal.h",
207 "objc/AppRTCMobile/ARDJoinResponse.h",
208 "objc/AppRTCMobile/ARDJoinResponse.m",
209 "objc/AppRTCMobile/ARDMessageResponse+Internal.h",
210 "objc/AppRTCMobile/ARDMessageResponse.h",
211 "objc/AppRTCMobile/ARDMessageResponse.m",
212 "objc/AppRTCMobile/ARDRoomServerClient.h",
sakalc4adacf2017-03-28 08:22:48213 "objc/AppRTCMobile/ARDSettingsModel+Private.h",
214 "objc/AppRTCMobile/ARDSettingsModel.h",
215 "objc/AppRTCMobile/ARDSettingsModel.m",
216 "objc/AppRTCMobile/ARDSettingsStore.h",
217 "objc/AppRTCMobile/ARDSettingsStore.m",
Magnus Jedvertc1815cf2016-09-27 08:10:41218 "objc/AppRTCMobile/ARDSignalingChannel.h",
219 "objc/AppRTCMobile/ARDSignalingMessage.h",
220 "objc/AppRTCMobile/ARDSignalingMessage.m",
221 "objc/AppRTCMobile/ARDStatsBuilder.h",
222 "objc/AppRTCMobile/ARDStatsBuilder.m",
kthelgasoncc882af2017-01-13 13:59:46223 "objc/AppRTCMobile/ARDTURNClient+Internal.h",
Magnus Jedvertc1815cf2016-09-27 08:10:41224 "objc/AppRTCMobile/ARDTURNClient.h",
kthelgasoncc882af2017-01-13 13:59:46225 "objc/AppRTCMobile/ARDTURNClient.m",
Magnus Jedvertc1815cf2016-09-27 08:10:41226 "objc/AppRTCMobile/ARDWebSocketChannel.h",
227 "objc/AppRTCMobile/ARDWebSocketChannel.m",
228 "objc/AppRTCMobile/RTCIceCandidate+JSON.h",
229 "objc/AppRTCMobile/RTCIceCandidate+JSON.m",
230 "objc/AppRTCMobile/RTCIceServer+JSON.h",
231 "objc/AppRTCMobile/RTCIceServer+JSON.m",
232 "objc/AppRTCMobile/RTCMediaConstraints+JSON.h",
233 "objc/AppRTCMobile/RTCMediaConstraints+JSON.m",
234 "objc/AppRTCMobile/RTCSessionDescription+JSON.h",
235 "objc/AppRTCMobile/RTCSessionDescription+JSON.m",
tkchin2ddfdba2016-08-08 04:37:45236 ]
ehmaldonadoe9cc6862016-09-05 13:10:18237 public_configs = [ ":apprtc_signaling_config" ]
tkchin2ddfdba2016-08-08 04:37:45238 deps = [
239 ":apprtc_common",
240 ":socketrocket",
241 ]
Kári Tristan Helgason946923a2017-06-02 12:05:56242 if (is_ios) {
Mirko Bonadei1a339c32017-12-14 12:06:10243 deps += [
244 ":AppRTCMobile_ios_frameworks",
245 "../sdk:framework_objc",
Kári Tristan Helgason946923a2017-06-02 12:05:56246 ]
Mirko Bonadei1a339c32017-12-14 12:06:10247 } else {
248 deps += [ "../sdk:peerconnection_objc" ]
Kári Tristan Helgason946923a2017-06-02 12:05:56249 }
tkchin2ddfdba2016-08-08 04:37:45250 libs = [ "QuartzCore.framework" ]
251 }
252
253 if (is_ios) {
denicija77bfd7c2016-11-15 08:41:26254 rtc_static_library("AppRTCMobile_lib") {
kjellander1993b1d2017-03-06 08:29:21255 testonly = true
tkchin2ddfdba2016-08-08 04:37:45256 sources = [
Patrik Höglund49acb1e2018-01-02 13:41:54257 "objc/AppRTCMobile/ios/ARDAppDelegate.h",
Magnus Jedvertc1815cf2016-09-27 08:10:41258 "objc/AppRTCMobile/ios/ARDAppDelegate.m",
Daniela012b56b2017-11-15 12:15:24259 "objc/AppRTCMobile/ios/ARDFileCaptureController.h",
260 "objc/AppRTCMobile/ios/ARDFileCaptureController.m",
Magnus Jedvertc1815cf2016-09-27 08:10:41261 "objc/AppRTCMobile/ios/ARDMainView.h",
262 "objc/AppRTCMobile/ios/ARDMainView.m",
263 "objc/AppRTCMobile/ios/ARDMainViewController.h",
264 "objc/AppRTCMobile/ios/ARDMainViewController.m",
denicijad17d5362016-11-02 09:56:09265 "objc/AppRTCMobile/ios/ARDSettingsViewController.h",
266 "objc/AppRTCMobile/ios/ARDSettingsViewController.m",
Magnus Jedvertc1815cf2016-09-27 08:10:41267 "objc/AppRTCMobile/ios/ARDStatsView.h",
268 "objc/AppRTCMobile/ios/ARDStatsView.m",
269 "objc/AppRTCMobile/ios/ARDVideoCallView.h",
270 "objc/AppRTCMobile/ios/ARDVideoCallView.m",
271 "objc/AppRTCMobile/ios/ARDVideoCallViewController.h",
272 "objc/AppRTCMobile/ios/ARDVideoCallViewController.m",
Anders Carlsson6bf43d22017-10-16 11:51:43273 "objc/AppRTCMobile/ios/RTCVideoCodecInfo+HumanReadable.h",
274 "objc/AppRTCMobile/ios/RTCVideoCodecInfo+HumanReadable.m",
Magnus Jedvertc1815cf2016-09-27 08:10:41275 "objc/AppRTCMobile/ios/UIImage+ARDUtilities.h",
276 "objc/AppRTCMobile/ios/UIImage+ARDUtilities.m",
denicija77bfd7c2016-11-15 08:41:26277 ]
denicija77bfd7c2016-11-15 08:41:26278
279 deps = [
Kári Tristan Helgason946923a2017-06-02 12:05:56280 ":AppRTCMobile_ios_frameworks",
denicija77bfd7c2016-11-15 08:41:26281 ":apprtc_common",
282 ":apprtc_signaling",
Mirko Bonadei1a339c32017-12-14 12:06:10283 "../sdk:framework_objc",
denicija77bfd7c2016-11-15 08:41:26284 ]
285 }
286
287 ios_app_bundle("AppRTCMobile") {
kjellander1993b1d2017-03-06 08:29:21288 testonly = true
denicija77bfd7c2016-11-15 08:41:26289 sources = [
Magnus Jedvertc1815cf2016-09-27 08:10:41290 "objc/AppRTCMobile/ios/main.m",
tkchin2ddfdba2016-08-08 04:37:45291 ]
292
Magnus Jedvertc1815cf2016-09-27 08:10:41293 info_plist = "objc/AppRTCMobile/ios/Info.plist"
tkchin2ddfdba2016-08-08 04:37:45294
denicija77bfd7c2016-11-15 08:41:26295 configs += [ "..:common_config" ]
tkchin2ddfdba2016-08-08 04:37:45296 public_configs = [ "..:common_inherited_config" ]
297
298 deps = [
Magnus Jedvertc1815cf2016-09-27 08:10:41299 ":AppRTCMobile_ios_bundle_data",
kthelgasond3adbfb2017-01-26 09:14:04300 ":AppRTCMobile_ios_frameworks",
denicija77bfd7c2016-11-15 08:41:26301 ":AppRTCMobile_lib",
Mirko Bonadei1a339c32017-12-14 12:06:10302 "../sdk:framework_objc",
tkchin2ddfdba2016-08-08 04:37:45303 ]
304
305 if (target_cpu == "x86") {
306 deps += [ "//testing/iossim:iossim" ]
307 }
308 }
309
kthelgasond3adbfb2017-01-26 09:14:04310 bundle_data("AppRTCMobile_ios_frameworks") {
Mirko Bonadei1a339c32017-12-14 12:06:10311 deps = [
kthelgason36d658d2017-08-24 12:43:45312 "../sdk:framework_objc+link",
kthelgasond3adbfb2017-01-26 09:14:04313 ]
314 sources = [
wjywbsbef8a5d2017-10-09 06:32:28315 "$root_build_dir/WebRTC.framework",
kthelgasond3adbfb2017-01-26 09:14:04316 ]
317 outputs = [
318 "{{bundle_resources_dir}}/Frameworks/{{source_file_part}}",
319 ]
320 }
321
Magnus Jedvertc1815cf2016-09-27 08:10:41322 bundle_data("AppRTCMobile_ios_bundle_data") {
tkchin2ddfdba2016-08-08 04:37:45323 sources = [
Magnus Jedvertc1815cf2016-09-27 08:10:41324 "objc/AppRTCMobile/ios/resources/Roboto-Regular.ttf",
Daniela012b56b2017-11-15 12:15:24325
326 # Sample video taken from https://media.xiph.org/video/derf/
327 "objc/AppRTCMobile/ios/resources/foreman.mp4",
Magnus Jedvertc1815cf2016-09-27 08:10:41328 "objc/AppRTCMobile/ios/resources/iPhone5@2x.png",
329 "objc/AppRTCMobile/ios/resources/iPhone6@2x.png",
330 "objc/AppRTCMobile/ios/resources/iPhone6p@3x.png",
331 "objc/AppRTCMobile/ios/resources/ic_call_end_black_24dp.png",
332 "objc/AppRTCMobile/ios/resources/ic_call_end_black_24dp@2x.png",
333 "objc/AppRTCMobile/ios/resources/ic_clear_black_24dp.png",
334 "objc/AppRTCMobile/ios/resources/ic_clear_black_24dp@2x.png",
denicija6d6762c2016-10-28 11:53:16335 "objc/AppRTCMobile/ios/resources/ic_settings_black_24dp.png",
336 "objc/AppRTCMobile/ios/resources/ic_settings_black_24dp@2x.png",
Magnus Jedvertc1815cf2016-09-27 08:10:41337 "objc/AppRTCMobile/ios/resources/ic_surround_sound_black_24dp.png",
338 "objc/AppRTCMobile/ios/resources/ic_surround_sound_black_24dp@2x.png",
339 "objc/AppRTCMobile/ios/resources/ic_switch_video_black_24dp.png",
340 "objc/AppRTCMobile/ios/resources/ic_switch_video_black_24dp@2x.png",
341 "objc/AppRTCMobile/ios/resources/mozart.mp3",
anderscb5ed9052017-08-15 11:07:12342 "objc/Icon-120.png",
343 "objc/Icon-180.png",
tkchin2ddfdba2016-08-08 04:37:45344 "objc/Icon.png",
345 ]
346 outputs = [
347 "{{bundle_resources_dir}}/{{source_file_part}}",
348 ]
349 }
350 }
351
352 if (is_mac) {
denicija77bfd7c2016-11-15 08:41:26353 rtc_static_library("AppRTCMobile_lib") {
kjellander1993b1d2017-03-06 08:29:21354 testonly = true
tkchin2ddfdba2016-08-08 04:37:45355 sources = [
Magnus Jedvertc1815cf2016-09-27 08:10:41356 "objc/AppRTCMobile/mac/APPRTCAppDelegate.h",
357 "objc/AppRTCMobile/mac/APPRTCAppDelegate.m",
358 "objc/AppRTCMobile/mac/APPRTCViewController.h",
359 "objc/AppRTCMobile/mac/APPRTCViewController.m",
tkchin2ddfdba2016-08-08 04:37:45360 ]
jianjun.zhuc0247402017-07-11 13:20:45361 configs += [ "..:common_objc" ]
tkchin2ddfdba2016-08-08 04:37:45362 deps = [
363 ":apprtc_common",
364 ":apprtc_signaling",
Mirko Bonadei1a339c32017-12-14 12:06:10365 "../sdk:metal_objc",
kthelgason36d658d2017-08-24 12:43:45366 "../sdk:ui_objc",
tkchin2ddfdba2016-08-08 04:37:45367 ]
368 }
369
Magnus Jedvertc1815cf2016-09-27 08:10:41370 mac_app_bundle("AppRTCMobile") {
kjellander1993b1d2017-03-06 08:29:21371 testonly = true
Magnus Jedvertc1815cf2016-09-27 08:10:41372 output_name = "AppRTCMobile"
tkchin2ddfdba2016-08-08 04:37:45373
tkchin2ddfdba2016-08-08 04:37:45374 sources = [
Magnus Jedvertc1815cf2016-09-27 08:10:41375 "objc/AppRTCMobile/mac/main.m",
tkchin2ddfdba2016-08-08 04:37:45376 ]
377
378 public_configs = [ "..:common_inherited_config" ]
379
Magnus Jedvertc1815cf2016-09-27 08:10:41380 info_plist = "objc/AppRTCMobile/mac/Info.plist"
tkchin2ddfdba2016-08-08 04:37:45381
382 libs = [ "AppKit.framework" ]
383
384 deps = [
denicija77bfd7c2016-11-15 08:41:26385 ":AppRTCMobile_lib",
tkchin2ddfdba2016-08-08 04:37:45386 ]
387 }
388 }
389
390 config("socketrocket_include_config") {
Magnus Jedvertc1815cf2016-09-27 08:10:41391 include_dirs = [ "objc/AppRTCMobile/third_party/SocketRocket" ]
tkchin2ddfdba2016-08-08 04:37:45392 }
393
394 config("socketrocket_warning_config") {
395 # GN orders flags on a target before flags from configs. The default config
396 # adds these flags so to cancel them out they need to come from a config and
397 # cannot be on the target directly.
398 cflags = [
399 "-Wno-deprecated-declarations",
400 "-Wno-nonnull",
tkchin2ddfdba2016-08-08 04:37:45401 "-Wno-semicolon-before-method-body",
kthelgasone47de1a2017-02-24 09:56:01402 "-Wno-unused-variable",
tkchin2ddfdba2016-08-08 04:37:45403 ]
404
henrika27d8b612016-09-21 11:13:00405 cflags_objc = [
406 # Enabled for cflags_objc in build/config/compiler/BUILD.gn.
407 "-Wno-objc-missing-property-synthesis",
henrika27d8b612016-09-21 11:13:00408 ]
tkchin2ddfdba2016-08-08 04:37:45409 }
410
kjellanderb62dbbe2016-09-23 07:38:52411 rtc_static_library("socketrocket") {
kjellander1993b1d2017-03-06 08:29:21412 testonly = true
tkchin2ddfdba2016-08-08 04:37:45413 sources = [
Magnus Jedvertc1815cf2016-09-27 08:10:41414 "objc/AppRTCMobile/third_party/SocketRocket/SRWebSocket.h",
415 "objc/AppRTCMobile/third_party/SocketRocket/SRWebSocket.m",
tkchin2ddfdba2016-08-08 04:37:45416 ]
kthelgasonc0977102017-04-24 07:57:16417 configs += [ ":socketrocket_warning_config" ]
ehmaldonadoe9cc6862016-09-05 13:10:18418 public_configs = [ ":socketrocket_include_config" ]
tkchin2ddfdba2016-08-08 04:37:45419
420 libs = [
421 "CFNetwork.framework",
422 "icucore",
423 ]
424 }
adam.fedorbcc5d872016-11-07 22:53:28425
426 if (rtc_include_tests) {
kthelgason4065a5762017-02-14 12:58:56427 # TODO(kthelgason): compile xctests on mac when chromium supports it.
428 if (is_ios) {
429 rtc_source_set("apprtcmobile_test_sources") {
kjellander1993b1d2017-03-06 08:29:21430 testonly = true
kthelgason4065a5762017-02-14 12:58:56431 include_dirs = [
432 "objc/AppRTCMobile",
433 "objc/AppRTCMobile/ios",
434 ]
435 testonly = true
436 sources = [
437 "objc/AppRTCMobile/tests/ARDAppClient_xctest.mm",
Daniela012b56b2017-11-15 12:15:24438 "objc/AppRTCMobile/tests/ARDFileCaptureController_xctest.mm",
kthelgason4065a5762017-02-14 12:58:56439 "objc/AppRTCMobile/tests/ARDSettingsModel_xctest.mm",
440 ]
kjellander1993b1d2017-03-06 08:29:21441 deps = [
kthelgason4065a5762017-02-14 12:58:56442 ":AppRTCMobile_ios_frameworks",
443 ":AppRTCMobile_lib",
Mirko Bonadei1a339c32017-12-14 12:06:10444 "../rtc_base:rtc_base",
445 "../sdk:framework_objc",
kthelgason4065a5762017-02-14 12:58:56446 "//build/config/ios:xctest",
447 "//third_party/ocmock",
448 ]
adam.fedorbcc5d872016-11-07 22:53:28449 }
450
kthelgason4065a5762017-02-14 12:58:56451 rtc_ios_xctest_test("apprtcmobile_tests") {
452 info_plist = "objc/AppRTCMobile/ios/Info.plist"
453 sources = [
454 "objc/AppRTCMobile/ios/main.m",
455 ]
456 deps = [
457 ":apprtcmobile_test_sources",
Mirko Bonadei1a339c32017-12-14 12:06:10458 "../sdk:framework_objc",
kthelgason4065a5762017-02-14 12:58:56459 ]
460 ldflags = [ "-all_load" ]
461 }
adam.fedorbcc5d872016-11-07 22:53:28462 }
463 }
tkchin2ddfdba2016-08-08 04:37:45464}
kthelgason0727f152016-08-08 16:03:23465
466if (is_linux || is_win) {
ehmaldonadod02fe4b2016-08-26 20:31:24467 config("peerconnection_client_warnings_config") {
kjellander4a9abad2016-09-18 15:12:29468 cflags = []
ehmaldonadod02fe4b2016-08-26 20:31:24469 if (is_win && is_clang) {
kjellander4a9abad2016-09-18 15:12:29470 cflags += [
ehmaldonadod02fe4b2016-08-26 20:31:24471 # Disable warnings failing when compiling with Clang on Windows.
472 # https://bugs.chromium.org/p/webrtc/issues/detail?id=5366
473 "-Wno-format",
474
475 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=6271
476 # for -Wno-reorder and -Wno-sign-compare
477 "-Wno-reorder",
478 "-Wno-sign-compare",
479 ]
480 }
kjellanderd4626e52016-09-07 09:33:01481 if (is_linux && target_cpu == "x86") {
kjellander4a9abad2016-09-18 15:12:29482 cflags += [
kjellanderd4626e52016-09-07 09:33:01483 # Needed to compile on Linux 32-bit.
484 "-Wno-sentinel",
485 ]
486 }
kjellander4a9abad2016-09-18 15:12:29487
488 if (is_clang) {
489 # TODO(ehmaldonado): Make peerconnection_client compile with the standard
490 # set of warnings.
491 # See https://bugs.chromium.org/p/webrtc/issues/detail?id=6306
492 cflags += [ "-Wno-inconsistent-missing-override" ]
493 }
ehmaldonadod02fe4b2016-08-26 20:31:24494 }
495
ehmaldonado38a21322016-09-02 11:10:34496 rtc_executable("peerconnection_client") {
kjellander1993b1d2017-03-06 08:29:21497 testonly = true
kthelgason0727f152016-08-08 16:03:23498 sources = [
499 "peerconnection/client/conductor.cc",
500 "peerconnection/client/conductor.h",
501 "peerconnection/client/defaults.cc",
502 "peerconnection/client/defaults.h",
503 "peerconnection/client/peer_connection_client.cc",
504 "peerconnection/client/peer_connection_client.h",
505 ]
ehmaldonado7a2ce0b2016-09-05 08:35:44506
kjellandere40a7ee2016-10-17 06:56:12507 if (!build_with_chromium && is_clang) {
508 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 11:10:34509 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kthelgason0727f152016-08-08 16:03:23510 }
Patrik Höglundb5b5bce2017-11-13 09:19:58511 deps = [
512 "../api:video_frame_api_i420",
Patrik Höglunda8005cf2017-12-13 15:05:42513 "../rtc_base:checks",
Patrik Höglund3e113432017-12-15 13:40:10514 "../rtc_base:stringutils",
Patrik Höglundb5b5bce2017-11-13 09:19:58515 ]
kthelgason0727f152016-08-08 16:03:23516 if (is_win) {
517 sources += [
518 "peerconnection/client/flagdefs.h",
519 "peerconnection/client/main.cc",
520 "peerconnection/client/main_wnd.cc",
521 "peerconnection/client/main_wnd.h",
522 ]
523 cflags = [ "/wd4245" ]
524 configs += [ "//build/config/win:windowed" ]
jianjun.zhuc0247402017-07-11 13:20:45525 deps += [ "../media:rtc_media_base" ]
kthelgason0727f152016-08-08 16:03:23526 }
527 if (is_linux) {
528 sources += [
529 "peerconnection/client/linux/main.cc",
530 "peerconnection/client/linux/main_wnd.cc",
531 "peerconnection/client/linux/main_wnd.h",
532 ]
Henrik Kjellanderefbde2c2017-03-27 06:28:27533 cflags = [ "-Wno-deprecated-declarations" ]
kthelgason0727f152016-08-08 16:03:23534 libs = [
535 "X11",
536 "Xcomposite",
537 "Xext",
538 "Xrender",
539 ]
thomasandersonef16e992016-12-13 10:57:43540 deps += [ "//build/config/linux/gtk" ]
kthelgason0727f152016-08-08 16:03:23541 }
ehmaldonadod02fe4b2016-08-26 20:31:24542 configs += [ ":peerconnection_client_warnings_config" ]
kjellander1993b1d2017-03-06 08:29:21543
544 deps += [
jianjun.zhuc0247402017-07-11 13:20:45545 "../api:libjingle_peerconnection_test_api",
546 "../api:video_frame_api",
Karl Wiberg1b0eae32017-10-17 12:48:54547 "../api/audio_codecs:builtin_audio_decoder_factory",
548 "../api/audio_codecs:builtin_audio_encoder_factory",
jianjun.zhuc0247402017-07-11 13:20:45549 "../media:rtc_media",
550 "../modules/video_capture:video_capture_module",
551 "../pc:libjingle_peerconnection",
ehmaldonadof6a861a2017-07-19 17:40:47552 "../rtc_base:rtc_base",
553 "../rtc_base:rtc_base_approved",
554 "../rtc_base:rtc_json",
jianjun.zhuc0247402017-07-11 13:20:45555 "../system_wrappers:field_trial_default",
556 "../system_wrappers:metrics_default",
kjellander1993b1d2017-03-06 08:29:21557 "//third_party/libyuv",
kjellander1993b1d2017-03-06 08:29:21558 ]
kthelgason0727f152016-08-08 16:03:23559 }
kjellanderd4626e52016-09-07 09:33:01560
ehmaldonado38a21322016-09-02 11:10:34561 rtc_executable("peerconnection_server") {
kjellander1993b1d2017-03-06 08:29:21562 testonly = true
kthelgason0727f152016-08-08 16:03:23563 sources = [
564 "peerconnection/server/data_socket.cc",
565 "peerconnection/server/data_socket.h",
566 "peerconnection/server/main.cc",
567 "peerconnection/server/peer_channel.cc",
568 "peerconnection/server/peer_channel.h",
569 "peerconnection/server/utils.cc",
570 "peerconnection/server/utils.h",
571 ]
572 deps = [
jianjun.zhuc0247402017-07-11 13:20:45573 "..:webrtc_common",
ehmaldonadof6a861a2017-07-19 17:40:47574 "../rtc_base:rtc_base_approved",
Patrik Höglund3e113432017-12-15 13:40:10575 "../rtc_base:stringutils",
jianjun.zhuc0247402017-07-11 13:20:45576 "../rtc_tools:command_line_parser",
kthelgason0727f152016-08-08 16:03:23577 ]
kjellandere40a7ee2016-10-17 06:56:12578 if (!build_with_chromium && is_clang) {
579 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 11:10:34580 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kthelgason0727f152016-08-08 16:03:23581 }
582 }
ehmaldonado38a21322016-09-02 11:10:34583 rtc_executable("relayserver") {
kjellander1993b1d2017-03-06 08:29:21584 testonly = true
kthelgason0727f152016-08-08 16:03:23585 sources = [
586 "relayserver/relayserver_main.cc",
587 ]
588 deps = [
jianjun.zhuc0247402017-07-11 13:20:45589 "../p2p:rtc_p2p",
590 "../pc:rtc_pc",
ehmaldonadof6a861a2017-07-19 17:40:47591 "../rtc_base:rtc_base",
592 "../rtc_base:rtc_base_approved",
jianjun.zhuc0247402017-07-11 13:20:45593 "../system_wrappers:field_trial_default",
594 "../system_wrappers:metrics_default",
kthelgason0727f152016-08-08 16:03:23595 ]
kjellandere40a7ee2016-10-17 06:56:12596 if (!build_with_chromium && is_clang) {
597 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 11:10:34598 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kthelgason0727f152016-08-08 16:03:23599 }
600 }
ehmaldonado38a21322016-09-02 11:10:34601 rtc_executable("turnserver") {
kjellander1993b1d2017-03-06 08:29:21602 testonly = true
kthelgason0727f152016-08-08 16:03:23603 sources = [
604 "turnserver/turnserver_main.cc",
605 ]
606 deps = [
jianjun.zhuc0247402017-07-11 13:20:45607 "../p2p:rtc_p2p",
608 "../pc:rtc_pc",
ehmaldonadof6a861a2017-07-19 17:40:47609 "../rtc_base:rtc_base",
610 "../rtc_base:rtc_base_approved",
jianjun.zhuc0247402017-07-11 13:20:45611 "../system_wrappers:field_trial_default",
612 "../system_wrappers:metrics_default",
kthelgason0727f152016-08-08 16:03:23613 ]
kjellandere40a7ee2016-10-17 06:56:12614 if (!build_with_chromium && is_clang) {
615 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 11:10:34616 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kthelgason0727f152016-08-08 16:03:23617 }
618 }
ehmaldonado38a21322016-09-02 11:10:34619 rtc_executable("stunserver") {
kjellander1993b1d2017-03-06 08:29:21620 testonly = true
kthelgason0727f152016-08-08 16:03:23621 sources = [
622 "stunserver/stunserver_main.cc",
623 ]
624 deps = [
jianjun.zhuc0247402017-07-11 13:20:45625 "../p2p:rtc_p2p",
626 "../pc:rtc_pc",
ehmaldonadof6a861a2017-07-19 17:40:47627 "../rtc_base:rtc_base",
628 "../rtc_base:rtc_base_approved",
jianjun.zhuc0247402017-07-11 13:20:45629 "../system_wrappers:field_trial_default",
630 "../system_wrappers:metrics_default",
kthelgason0727f152016-08-08 16:03:23631 ]
kjellandere40a7ee2016-10-17 06:56:12632 if (!build_with_chromium && is_clang) {
633 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
ehmaldonado38a21322016-09-02 11:10:34634 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
kthelgason0727f152016-08-08 16:03:23635 }
636 }
637}
charujainaca3a242016-11-01 10:09:15638
qiangchen42f96d52017-08-09 00:08:03639if (is_win || is_android) {
gyzhouad7cad82017-05-11 23:10:03640 rtc_shared_library("webrtc_unity_plugin") {
641 testonly = true
642 sources = [
643 "unityplugin/simple_peer_connection.cc",
644 "unityplugin/simple_peer_connection.h",
645 "unityplugin/unity_plugin_apis.cc",
646 "unityplugin/unity_plugin_apis.h",
gyzhoub38f3862017-07-25 23:04:31647 "unityplugin/video_observer.cc",
648 "unityplugin/video_observer.h",
gyzhouad7cad82017-05-11 23:10:03649 ]
qiangchen42f96d52017-08-09 00:08:03650
651 if (is_android) {
652 sources += [
653 "unityplugin/classreferenceholder.cc",
654 "unityplugin/classreferenceholder.h",
655 "unityplugin/jni_onload.cc",
656 ]
Qiang Chen43fb9122017-12-20 18:47:36657 suppressed_configs += [ "//build/config/android:hide_all_but_jni_onload" ]
qiangchen42f96d52017-08-09 00:08:03658 }
659
gyzhouad7cad82017-05-11 23:10:03660 if (!build_with_chromium && is_clang) {
661 # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163).
662 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
663 }
qiangchen42f96d52017-08-09 00:08:03664 if (is_win) {
665 cflags = [ "/wd4245" ]
666 configs += [
667 "//build/config/win:windowed",
668 ":peerconnection_client_warnings_config",
669 ]
670 }
gyzhouad7cad82017-05-11 23:10:03671 deps = [
jianjun.zhuc0247402017-07-11 13:20:45672 "../api:libjingle_peerconnection_test_api",
673 "../api:video_frame_api",
Qiang Chen51e20462017-12-05 19:11:21674 "../api/audio_codecs:builtin_audio_decoder_factory",
675 "../api/audio_codecs:builtin_audio_encoder_factory",
Patrik Höglundbe214a22018-01-04 11:14:35676 "../common_video",
Anders Carlssona114c882018-01-04 14:10:22677 "../media:rtc_internal_video_codecs",
jianjun.zhuc0247402017-07-11 13:20:45678 "../media:rtc_media",
679 "../media:rtc_media_base",
Qiang Chen43fb9122017-12-20 18:47:36680 "../modules/audio_device:audio_device",
681 "../modules/audio_processing:audio_processing",
jianjun.zhuc0247402017-07-11 13:20:45682 "../modules/video_capture:video_capture_module",
683 "../pc:libjingle_peerconnection",
qiangchen42f96d52017-08-09 00:08:03684 "../rtc_base:rtc_base",
jianjun.zhuc0247402017-07-11 13:20:45685 "../system_wrappers:field_trial_default",
686 "../system_wrappers:metrics_default",
gyzhouad7cad82017-05-11 23:10:03687 ]
qiangchen42f96d52017-08-09 00:08:03688 if (is_android) {
689 deps += [ "../sdk/android:libjingle_peerconnection_jni" ]
690 }
691 }
692}
693
694if (is_android) {
Mirko Bonadeifbb3b7d2017-11-07 15:36:33695 rtc_android_library("webrtc_unity_java") {
qiangchen42f96d52017-08-09 00:08:03696 java_files = [ "unityplugin/java/src/org/webrtc/UnityUtility.java" ]
697 deps = [
698 "../rtc_base:base_java",
699 "../sdk/android:libjingle_peerconnection_java",
700 ]
701 }
702
703 dist_jar("libwebrtc_unity") {
704 _target_dir_name = get_label_info(":$target_name", "dir")
705 output = "${root_out_dir}/lib.java${_target_dir_name}/${target_name}.jar"
706 direct_deps_only = true
707 use_interface_jars = false
Oleh Prypin1e53f8a2017-12-21 21:06:21708 use_unprocessed_jars = true
Oleh Prypin86021d92017-09-24 20:29:06709 requires_android = true
qiangchen42f96d52017-08-09 00:08:03710 deps = [
711 ":webrtc_unity_java",
712 "../modules/audio_device:audio_device_java",
713 "../rtc_base:base_java",
714 "../sdk/android:libjingle_peerconnection_java",
715 "../sdk/android:libjingle_peerconnection_metrics_default_java",
716 ]
gyzhouad7cad82017-05-11 23:10:03717 }
718}
719
charujainaca3a242016-11-01 10:09:15720if (!build_with_chromium) {
721 # Doesn't build within Chrome on Win.
722 rtc_executable("stun_prober") {
kjellander1993b1d2017-03-06 08:29:21723 testonly = true
charujainaca3a242016-11-01 10:09:15724 sources = [
725 "stunprober/main.cc",
726 ]
727
728 if (!build_with_chromium && is_clang) {
729 # Suppress warnings from Chrome's Clang plugins.
730 # See http://code.google.com/p/webrtc/issues/detail?id=163 for details.
731 suppressed_configs += [ "//build/config/clang:find_bad_constructs" ]
732 }
733
734 deps = [
735 "../p2p:libstunprober",
736 "../p2p:rtc_p2p",
Patrik Höglunda8005cf2017-12-13 15:05:42737 "../rtc_base:checks",
ehmaldonadof6a861a2017-07-19 17:40:47738 "../rtc_base:rtc_base",
739 "../rtc_base:rtc_base_approved",
Patrik Höglund3e113432017-12-15 13:40:10740 "../rtc_base:stringutils",
charujainaca3a242016-11-01 10:09:15741 "../system_wrappers:field_trial_default",
742 ]
743 }
744}