Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 1 | # 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 | |
mbonadei | 9aa3f0a | 2017-01-24 06:58:22 -0800 | [diff] [blame] | 9 | import("../webrtc.gni") |
Qiang Chen | 43fb912 | 2017-12-20 10:47:36 -0800 | [diff] [blame] | 10 | |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 11 | if (is_android) { |
| 12 | import("//build/config/android/config.gni") |
| 13 | import("//build/config/android/rules.gni") |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 14 | } else if (is_mac) { |
| 15 | import("//build/config/mac/rules.gni") |
| 16 | } else if (is_ios) { |
| 17 | import("//build/config/ios/rules.gni") |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 18 | } |
| 19 | |
| 20 | group("examples") { |
kjellander | 6ceab08 | 2016-10-28 05:44:03 -0700 | [diff] [blame] | 21 | # This target shall build all targets in examples. |
| 22 | testonly = true |
Mirko Bonadei | 1a339c3 | 2017-12-14 13:06:10 +0100 | [diff] [blame] | 23 | deps = [] |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 24 | |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 25 | if (is_android) { |
Mirko Bonadei | 1a339c3 | 2017-12-14 13:06:10 +0100 | [diff] [blame] | 26 | deps += [ |
kjellander | 6ceab08 | 2016-10-28 05:44:03 -0700 | [diff] [blame] | 27 | ":AppRTCMobile", |
Sami Kalliomäki | d54f5f5 | 2018-08-03 13:23:05 +0200 | [diff] [blame] | 28 | ":AppRTCMobile_test_apk", |
George Zhou | 2770c3d | 2018-03-07 09:58:54 -0800 | [diff] [blame] | 29 | ":libwebrtc_unity", |
kjellander | 6ceab08 | 2016-10-28 05:44:03 -0700 | [diff] [blame] | 30 | ] |
Sami Kalliomäki | 3e77afd | 2018-03-08 16:43:16 +0100 | [diff] [blame] | 31 | |
| 32 | # TODO(sakal): We include some code from the tests. Remove this dependency |
| 33 | # and remove this if-clause. |
| 34 | if (rtc_include_tests) { |
Artem Titov | 94b57c0 | 2019-03-21 13:35:10 +0100 | [diff] [blame] | 35 | deps += [ "androidnativeapi" ] |
Sami Kalliomäki | 3e77afd | 2018-03-08 16:43:16 +0100 | [diff] [blame] | 36 | } |
kjellander | 6ceab08 | 2016-10-28 05:44:03 -0700 | [diff] [blame] | 37 | } |
| 38 | |
charujain | aca3a24 | 2016-11-01 03:09:15 -0700 | [diff] [blame] | 39 | if (!build_with_chromium) { |
Mirko Bonadei | 1a339c3 | 2017-12-14 13:06:10 +0100 | [diff] [blame] | 40 | deps += [ ":stun_prober" ] |
charujain | aca3a24 | 2016-11-01 03:09:15 -0700 | [diff] [blame] | 41 | } |
| 42 | |
kjellander | 6ceab08 | 2016-10-28 05:44:03 -0700 | [diff] [blame] | 43 | if (is_ios || (is_mac && target_cpu != "x86")) { |
Mirko Bonadei | 1a339c3 | 2017-12-14 13:06:10 +0100 | [diff] [blame] | 44 | deps += [ ":AppRTCMobile" ] |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 45 | } |
kjellander | 6ceab08 | 2016-10-28 05:44:03 -0700 | [diff] [blame] | 46 | |
| 47 | if (is_linux || is_win) { |
Mirko Bonadei | 1a339c3 | 2017-12-14 13:06:10 +0100 | [diff] [blame] | 48 | deps += [ |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 49 | ":peerconnection_server", |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 50 | ":stunserver", |
| 51 | ":turnserver", |
| 52 | ] |
Robin Raymond | ce1b140 | 2018-11-22 20:10:11 -0500 | [diff] [blame] | 53 | if (current_os != "winuwp") { |
| 54 | deps += [ ":peerconnection_client" ] |
| 55 | } |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 56 | } |
George Zhou | 2770c3d | 2018-03-07 09:58:54 -0800 | [diff] [blame] | 57 | |
| 58 | if (is_android || is_win) { |
| 59 | deps += [ ":webrtc_unity_plugin" ] |
| 60 | } |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 61 | } |
| 62 | |
Mirko Bonadei | 86d053c | 2019-10-17 21:32:04 +0200 | [diff] [blame] | 63 | rtc_library("read_auth_file") { |
Niels Möller | 9862c2e | 2018-10-30 12:20:03 +0100 | [diff] [blame] | 64 | testonly = true |
| 65 | sources = [ |
| 66 | "turnserver/read_auth_file.cc", |
| 67 | "turnserver/read_auth_file.h", |
| 68 | ] |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 69 | deps = [ "../rtc_base" ] |
Niels Möller | 9862c2e | 2018-10-30 12:20:03 +0100 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | if (rtc_include_tests) { |
| 73 | rtc_test("examples_unittests") { |
| 74 | testonly = true |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 75 | sources = [ "turnserver/read_auth_file_unittest.cc" ] |
Niels Möller | 9862c2e | 2018-10-30 12:20:03 +0100 | [diff] [blame] | 76 | deps = [ |
| 77 | ":read_auth_file", |
| 78 | "../test:test_main", |
| 79 | "//test:test_support", |
| 80 | "//testing/gtest", |
| 81 | ] |
| 82 | } |
| 83 | } |
| 84 | |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 85 | if (is_android) { |
Mirko Bonadei | fbb3b7d | 2017-11-07 15:36:33 +0000 | [diff] [blame] | 86 | rtc_android_apk("AppRTCMobile") { |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 87 | testonly = true |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 88 | apk_name = "AppRTCMobile" |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 89 | android_manifest = "androidapp/AndroidManifest.xml" |
Oleh Prypin | 4cbb4ef | 2019-06-18 17:09:51 +0200 | [diff] [blame] | 90 | min_sdk_version = 16 |
| 91 | target_sdk_version = 29 |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 92 | |
| 93 | deps = [ |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 94 | ":AppRTCMobile_javalib", |
| 95 | ":AppRTCMobile_resources", |
jianjun.zhu | c024740 | 2017-07-11 06:20:45 -0700 | [diff] [blame] | 96 | "../rtc_base:base_java", |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 97 | ] |
| 98 | |
jianjun.zhu | c024740 | 2017-07-11 06:20:45 -0700 | [diff] [blame] | 99 | shared_libraries = [ "../sdk/android:libjingle_peerconnection_so" ] |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 100 | } |
| 101 | |
Mirko Bonadei | fbb3b7d | 2017-11-07 15:36:33 +0000 | [diff] [blame] | 102 | rtc_android_library("AppRTCMobile_javalib") { |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 103 | testonly = true |
Courtney Edwards | 35c87b6 | 2020-05-19 13:44:42 +0200 | [diff] [blame^] | 104 | android_manifest = "androidapp/AndroidManifest.xml" |
sakal | 07a050f | 2017-02-13 05:58:27 -0800 | [diff] [blame] | 105 | |
Natalie Chouinard | 65bbcab | 2019-12-23 14:02:25 -0800 | [diff] [blame] | 106 | sources = [ |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 107 | "androidapp/src/org/appspot/apprtc/AppRTCAudioManager.java", |
henrika | c3c2f31 | 2016-12-14 07:36:56 -0800 | [diff] [blame] | 108 | "androidapp/src/org/appspot/apprtc/AppRTCBluetoothManager.java", |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 109 | "androidapp/src/org/appspot/apprtc/AppRTCClient.java", |
| 110 | "androidapp/src/org/appspot/apprtc/AppRTCProximitySensor.java", |
| 111 | "androidapp/src/org/appspot/apprtc/CallActivity.java", |
| 112 | "androidapp/src/org/appspot/apprtc/CallFragment.java", |
| 113 | "androidapp/src/org/appspot/apprtc/CaptureQualityController.java", |
| 114 | "androidapp/src/org/appspot/apprtc/ConnectActivity.java", |
| 115 | "androidapp/src/org/appspot/apprtc/CpuMonitor.java", |
| 116 | "androidapp/src/org/appspot/apprtc/DirectRTCClient.java", |
| 117 | "androidapp/src/org/appspot/apprtc/HudFragment.java", |
| 118 | "androidapp/src/org/appspot/apprtc/PeerConnectionClient.java", |
Natalie Chouinard | 65bbcab | 2019-12-23 14:02:25 -0800 | [diff] [blame] | 119 | "androidapp/src/org/appspot/apprtc/RecordedAudioToFileController.java", |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 120 | "androidapp/src/org/appspot/apprtc/RoomParametersFetcher.java", |
Qingsi Wang | a4e72b7 | 2018-02-12 10:34:18 -0800 | [diff] [blame] | 121 | "androidapp/src/org/appspot/apprtc/RtcEventLog.java", |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 122 | "androidapp/src/org/appspot/apprtc/SettingsActivity.java", |
| 123 | "androidapp/src/org/appspot/apprtc/SettingsFragment.java", |
| 124 | "androidapp/src/org/appspot/apprtc/TCPChannelClient.java", |
| 125 | "androidapp/src/org/appspot/apprtc/UnhandledExceptionHandler.java", |
| 126 | "androidapp/src/org/appspot/apprtc/WebSocketChannelClient.java", |
| 127 | "androidapp/src/org/appspot/apprtc/WebSocketRTCClient.java", |
| 128 | "androidapp/src/org/appspot/apprtc/util/AppRTCUtils.java", |
| 129 | "androidapp/src/org/appspot/apprtc/util/AsyncHttpURLConnection.java", |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 130 | ] |
| 131 | |
| 132 | deps = [ |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 133 | ":AppRTCMobile_resources", |
jianjun.zhu | c024740 | 2017-07-11 06:20:45 -0700 | [diff] [blame] | 134 | "../rtc_base:base_java", |
Sami Kalliomäki | 7d8f594 | 2018-04-23 15:07:34 +0200 | [diff] [blame] | 135 | "../sdk/android:audio_api_java", |
Sami Kalliomäki | 725c106 | 2018-03-28 10:49:18 +0200 | [diff] [blame] | 136 | "../sdk/android:base_java", |
Sami Kalliomäki | 1641ca3 | 2018-04-04 15:59:31 +0200 | [diff] [blame] | 137 | "../sdk/android:camera_java", |
Anders Carlsson | 1e06d88 | 2018-07-10 09:33:30 +0200 | [diff] [blame] | 138 | "../sdk/android:default_video_codec_factory_java", |
Sami Kalliomäki | 1641ca3 | 2018-04-04 15:59:31 +0200 | [diff] [blame] | 139 | "../sdk/android:filevideo_java", |
Sami Kalliomäki | 725c106 | 2018-03-28 10:49:18 +0200 | [diff] [blame] | 140 | "../sdk/android:hwcodecs_java", |
Sami Kalliomäki | 7d8f594 | 2018-04-23 15:07:34 +0200 | [diff] [blame] | 141 | "../sdk/android:java_audio_device_module_java", |
jianjun.zhu | c024740 | 2017-07-11 06:20:45 -0700 | [diff] [blame] | 142 | "../sdk/android:libjingle_peerconnection_java", |
| 143 | "../sdk/android:libjingle_peerconnection_metrics_default_java", |
Sami Kalliomäki | 1641ca3 | 2018-04-04 15:59:31 +0200 | [diff] [blame] | 144 | "../sdk/android:peerconnection_java", |
| 145 | "../sdk/android:screencapturer_java", |
| 146 | "../sdk/android:surfaceviewrenderer_java", |
Sami Kalliomäki | 725c106 | 2018-03-28 10:49:18 +0200 | [diff] [blame] | 147 | "../sdk/android:swcodecs_java", |
Sami Kalliomäki | 1641ca3 | 2018-04-04 15:59:31 +0200 | [diff] [blame] | 148 | "../sdk/android:video_api_java", |
Sami Kalliomäki | 903bd41 | 2018-07-24 10:53:28 +0200 | [diff] [blame] | 149 | "../sdk/android:video_java", |
jianjun.zhu | c024740 | 2017-07-11 06:20:45 -0700 | [diff] [blame] | 150 | "androidapp/third_party/autobanh:autobanh_java", |
Peter Wen | 7bc331f | 2019-03-06 09:18:57 -0500 | [diff] [blame] | 151 | "//third_party/android_deps:com_android_support_support_annotations_java", |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 152 | ] |
| 153 | } |
| 154 | |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 155 | android_resources("AppRTCMobile_resources") { |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 156 | testonly = true |
Andrew Grieve | d4262df | 2020-03-25 12:59:50 -0400 | [diff] [blame] | 157 | sources = [ |
| 158 | "androidapp/res/drawable-hdpi/disconnect.png", |
| 159 | "androidapp/res/drawable-hdpi/ic_action_full_screen.png", |
| 160 | "androidapp/res/drawable-hdpi/ic_action_return_from_full_screen.png", |
| 161 | "androidapp/res/drawable-hdpi/ic_launcher.png", |
| 162 | "androidapp/res/drawable-hdpi/ic_loopback_call.png", |
| 163 | "androidapp/res/drawable-ldpi/disconnect.png", |
| 164 | "androidapp/res/drawable-ldpi/ic_action_full_screen.png", |
| 165 | "androidapp/res/drawable-ldpi/ic_action_return_from_full_screen.png", |
| 166 | "androidapp/res/drawable-ldpi/ic_launcher.png", |
| 167 | "androidapp/res/drawable-ldpi/ic_loopback_call.png", |
| 168 | "androidapp/res/drawable-mdpi/disconnect.png", |
| 169 | "androidapp/res/drawable-mdpi/ic_action_full_screen.png", |
| 170 | "androidapp/res/drawable-mdpi/ic_action_return_from_full_screen.png", |
| 171 | "androidapp/res/drawable-mdpi/ic_launcher.png", |
| 172 | "androidapp/res/drawable-mdpi/ic_loopback_call.png", |
| 173 | "androidapp/res/drawable-xhdpi/disconnect.png", |
| 174 | "androidapp/res/drawable-xhdpi/ic_action_full_screen.png", |
| 175 | "androidapp/res/drawable-xhdpi/ic_action_return_from_full_screen.png", |
| 176 | "androidapp/res/drawable-xhdpi/ic_launcher.png", |
| 177 | "androidapp/res/drawable-xhdpi/ic_loopback_call.png", |
| 178 | "androidapp/res/layout/activity_call.xml", |
| 179 | "androidapp/res/layout/activity_connect.xml", |
| 180 | "androidapp/res/layout/fragment_call.xml", |
| 181 | "androidapp/res/layout/fragment_hud.xml", |
| 182 | "androidapp/res/menu/connect_menu.xml", |
| 183 | "androidapp/res/values/arrays.xml", |
| 184 | "androidapp/res/values/strings.xml", |
| 185 | "androidapp/res/values-v17/styles.xml", |
| 186 | "androidapp/res/values-v21/styles.xml", |
| 187 | "androidapp/res/xml/preferences.xml", |
| 188 | ] |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 189 | custom_package = "org.appspot.apprtc" |
Andrew Grieve | d4262df | 2020-03-25 12:59:50 -0400 | [diff] [blame] | 190 | |
| 191 | # Needed for Bazel converter. |
| 192 | resource_dirs = [ "androidapp/res" ] |
| 193 | assert(resource_dirs != []) # Mark as used. |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 194 | } |
| 195 | |
Sami Kalliomäki | d54f5f5 | 2018-08-03 13:23:05 +0200 | [diff] [blame] | 196 | rtc_instrumentation_test_apk("AppRTCMobile_test_apk") { |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 197 | apk_name = "AppRTCMobileTest" |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 198 | android_manifest = "androidtests/AndroidManifest.xml" |
Oleh Prypin | 4cbb4ef | 2019-06-18 17:09:51 +0200 | [diff] [blame] | 199 | min_sdk_version = 16 |
| 200 | target_sdk_version = 21 |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 201 | |
Natalie Chouinard | 65bbcab | 2019-12-23 14:02:25 -0800 | [diff] [blame] | 202 | sources = [ |
Patrik Höglund | a8005cf | 2017-12-13 16:05:42 +0100 | [diff] [blame] | 203 | "androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java", |
| 204 | ] |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 205 | |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 206 | apk_under_test = ":AppRTCMobile" |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 207 | |
| 208 | deps = [ |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 209 | ":AppRTCMobile_javalib", |
jianjun.zhu | c024740 | 2017-07-11 06:20:45 -0700 | [diff] [blame] | 210 | "../sdk/android:libjingle_peerconnection_java", |
Sami Kalliomäki | 903bd41 | 2018-07-24 10:53:28 +0200 | [diff] [blame] | 211 | "../sdk/android:video_java", |
sakal | cb79d51 | 2017-01-11 06:21:26 -0800 | [diff] [blame] | 212 | "//third_party/android_support_test_runner:runner_java", |
| 213 | "//third_party/junit", |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 214 | ] |
| 215 | } |
Sami Kalliomaki | 9c0c75b | 2016-06-29 14:55:00 +0200 | [diff] [blame] | 216 | } |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 217 | |
| 218 | if (is_ios || (is_mac && target_cpu != "x86")) { |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 219 | config("apprtc_common_config") { |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 220 | include_dirs = [ "objc/AppRTCMobile/common" ] |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Mirko Bonadei | 86d053c | 2019-10-17 21:32:04 +0200 | [diff] [blame] | 223 | rtc_library("apprtc_common") { |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 224 | testonly = true |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 225 | sources = [ |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 226 | "objc/AppRTCMobile/common/ARDUtilities.h", |
| 227 | "objc/AppRTCMobile/common/ARDUtilities.m", |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 228 | ] |
ehmaldonado | e9cc686 | 2016-09-05 06:10:18 -0700 | [diff] [blame] | 229 | public_configs = [ ":apprtc_common_config" ] |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 230 | |
Kári Tristan Helgason | 946923a | 2017-06-02 14:05:56 +0200 | [diff] [blame] | 231 | if (is_ios) { |
Mirko Bonadei | cbaaaed | 2018-02-19 15:14:04 +0100 | [diff] [blame] | 232 | # iOS must use WebRTC.framework which is dynamically linked. |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 233 | deps = [ "../sdk:framework_objc+link" ] |
Kári Tristan Helgason | 946923a | 2017-06-02 14:05:56 +0200 | [diff] [blame] | 234 | } else { |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 235 | deps = [ "../sdk:mac_framework_objc+link" ] |
Kári Tristan Helgason | 946923a | 2017-06-02 14:05:56 +0200 | [diff] [blame] | 236 | } |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | config("apprtc_signaling_config") { |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 240 | include_dirs = [ "objc/AppRTCMobile" ] |
Mirko Bonadei | 89327ff | 2019-07-30 11:38:08 +0200 | [diff] [blame] | 241 | cflags_objc = [ |
| 242 | # TODO(bugs.webrtc.org/10837): Remove this when usage of |
| 243 | # archivedDataWithRootObject will be removed. |
| 244 | "-Wno-unguarded-availability", |
| 245 | ] |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 246 | } |
| 247 | |
Mirko Bonadei | 86d053c | 2019-10-17 21:32:04 +0200 | [diff] [blame] | 248 | rtc_library("apprtc_signaling") { |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 249 | testonly = true |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 250 | sources = [ |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 251 | "objc/AppRTCMobile/ARDAppClient+Internal.h", |
| 252 | "objc/AppRTCMobile/ARDAppClient.h", |
| 253 | "objc/AppRTCMobile/ARDAppClient.m", |
| 254 | "objc/AppRTCMobile/ARDAppEngineClient.h", |
| 255 | "objc/AppRTCMobile/ARDAppEngineClient.m", |
| 256 | "objc/AppRTCMobile/ARDBitrateTracker.h", |
| 257 | "objc/AppRTCMobile/ARDBitrateTracker.m", |
sakal | c522e75 | 2017-04-05 12:17:48 -0700 | [diff] [blame] | 258 | "objc/AppRTCMobile/ARDCaptureController.h", |
| 259 | "objc/AppRTCMobile/ARDCaptureController.m", |
Anders Carlsson | 358f2e0 | 2018-06-04 10:24:37 +0200 | [diff] [blame] | 260 | "objc/AppRTCMobile/ARDExternalSampleCapturer.h", |
| 261 | "objc/AppRTCMobile/ARDExternalSampleCapturer.m", |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 262 | "objc/AppRTCMobile/ARDJoinResponse+Internal.h", |
| 263 | "objc/AppRTCMobile/ARDJoinResponse.h", |
| 264 | "objc/AppRTCMobile/ARDJoinResponse.m", |
| 265 | "objc/AppRTCMobile/ARDMessageResponse+Internal.h", |
| 266 | "objc/AppRTCMobile/ARDMessageResponse.h", |
| 267 | "objc/AppRTCMobile/ARDMessageResponse.m", |
| 268 | "objc/AppRTCMobile/ARDRoomServerClient.h", |
sakal | c4adacf | 2017-03-28 01:22:48 -0700 | [diff] [blame] | 269 | "objc/AppRTCMobile/ARDSettingsModel+Private.h", |
| 270 | "objc/AppRTCMobile/ARDSettingsModel.h", |
| 271 | "objc/AppRTCMobile/ARDSettingsModel.m", |
| 272 | "objc/AppRTCMobile/ARDSettingsStore.h", |
| 273 | "objc/AppRTCMobile/ARDSettingsStore.m", |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 274 | "objc/AppRTCMobile/ARDSignalingChannel.h", |
| 275 | "objc/AppRTCMobile/ARDSignalingMessage.h", |
| 276 | "objc/AppRTCMobile/ARDSignalingMessage.m", |
| 277 | "objc/AppRTCMobile/ARDStatsBuilder.h", |
| 278 | "objc/AppRTCMobile/ARDStatsBuilder.m", |
kthelgason | cc882af | 2017-01-13 05:59:46 -0800 | [diff] [blame] | 279 | "objc/AppRTCMobile/ARDTURNClient+Internal.h", |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 280 | "objc/AppRTCMobile/ARDTURNClient.h", |
kthelgason | cc882af | 2017-01-13 05:59:46 -0800 | [diff] [blame] | 281 | "objc/AppRTCMobile/ARDTURNClient.m", |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 282 | "objc/AppRTCMobile/ARDWebSocketChannel.h", |
| 283 | "objc/AppRTCMobile/ARDWebSocketChannel.m", |
| 284 | "objc/AppRTCMobile/RTCIceCandidate+JSON.h", |
| 285 | "objc/AppRTCMobile/RTCIceCandidate+JSON.m", |
| 286 | "objc/AppRTCMobile/RTCIceServer+JSON.h", |
| 287 | "objc/AppRTCMobile/RTCIceServer+JSON.m", |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 288 | "objc/AppRTCMobile/RTCSessionDescription+JSON.h", |
| 289 | "objc/AppRTCMobile/RTCSessionDescription+JSON.m", |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 290 | ] |
ehmaldonado | e9cc686 | 2016-09-05 06:10:18 -0700 | [diff] [blame] | 291 | public_configs = [ ":apprtc_signaling_config" ] |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 292 | deps = [ |
| 293 | ":apprtc_common", |
| 294 | ":socketrocket", |
| 295 | ] |
Kári Tristan Helgason | 8a1e35c | 2019-03-07 10:44:26 +0100 | [diff] [blame] | 296 | |
Kári Tristan Helgason | 946923a | 2017-06-02 14:05:56 +0200 | [diff] [blame] | 297 | if (is_ios) { |
Mirko Bonadei | cbaaaed | 2018-02-19 15:14:04 +0100 | [diff] [blame] | 298 | # iOS must use WebRTC.framework which is dynamically linked. |
Mirko Bonadei | 1a339c3 | 2017-12-14 13:06:10 +0100 | [diff] [blame] | 299 | deps += [ |
Anders Carlsson | 7bca8ca | 2018-08-30 09:30:29 +0200 | [diff] [blame] | 300 | "../sdk:framework_objc+link", |
| 301 | "../sdk:ios_framework_bundle", |
Kári Tristan Helgason | 946923a | 2017-06-02 14:05:56 +0200 | [diff] [blame] | 302 | ] |
Mirko Bonadei | 1a339c3 | 2017-12-14 13:06:10 +0100 | [diff] [blame] | 303 | } else { |
Anders Carlsson | 7bca8ca | 2018-08-30 09:30:29 +0200 | [diff] [blame] | 304 | deps += [ "../sdk:mac_framework_objc+link" ] |
Kári Tristan Helgason | 946923a | 2017-06-02 14:05:56 +0200 | [diff] [blame] | 305 | } |
Kári Tristan Helgason | 8a1e35c | 2019-03-07 10:44:26 +0100 | [diff] [blame] | 306 | libs = [ |
| 307 | "CoreMedia.framework", |
| 308 | "QuartzCore.framework", |
| 309 | ] |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 310 | } |
| 311 | |
| 312 | if (is_ios) { |
Mirko Bonadei | 86d053c | 2019-10-17 21:32:04 +0200 | [diff] [blame] | 313 | rtc_library("AppRTCMobile_lib") { |
Mirko Bonadei | cbaaaed | 2018-02-19 15:14:04 +0100 | [diff] [blame] | 314 | # iOS must use WebRTC.framework which is dynamically linked. |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 315 | testonly = true |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 316 | sources = [ |
Patrik Höglund | 49acb1e | 2018-01-02 14:41:54 +0100 | [diff] [blame] | 317 | "objc/AppRTCMobile/ios/ARDAppDelegate.h", |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 318 | "objc/AppRTCMobile/ios/ARDAppDelegate.m", |
Daniela | 012b56b | 2017-11-15 13:15:24 +0100 | [diff] [blame] | 319 | "objc/AppRTCMobile/ios/ARDFileCaptureController.h", |
| 320 | "objc/AppRTCMobile/ios/ARDFileCaptureController.m", |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 321 | "objc/AppRTCMobile/ios/ARDMainView.h", |
| 322 | "objc/AppRTCMobile/ios/ARDMainView.m", |
| 323 | "objc/AppRTCMobile/ios/ARDMainViewController.h", |
| 324 | "objc/AppRTCMobile/ios/ARDMainViewController.m", |
denicija | d17d536 | 2016-11-02 02:56:09 -0700 | [diff] [blame] | 325 | "objc/AppRTCMobile/ios/ARDSettingsViewController.h", |
| 326 | "objc/AppRTCMobile/ios/ARDSettingsViewController.m", |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 327 | "objc/AppRTCMobile/ios/ARDStatsView.h", |
| 328 | "objc/AppRTCMobile/ios/ARDStatsView.m", |
| 329 | "objc/AppRTCMobile/ios/ARDVideoCallView.h", |
| 330 | "objc/AppRTCMobile/ios/ARDVideoCallView.m", |
| 331 | "objc/AppRTCMobile/ios/ARDVideoCallViewController.h", |
| 332 | "objc/AppRTCMobile/ios/ARDVideoCallViewController.m", |
Anders Carlsson | 6bf43d2 | 2017-10-16 13:51:43 +0200 | [diff] [blame] | 333 | "objc/AppRTCMobile/ios/RTCVideoCodecInfo+HumanReadable.h", |
| 334 | "objc/AppRTCMobile/ios/RTCVideoCodecInfo+HumanReadable.m", |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 335 | "objc/AppRTCMobile/ios/UIImage+ARDUtilities.h", |
| 336 | "objc/AppRTCMobile/ios/UIImage+ARDUtilities.m", |
denicija | 77bfd7c | 2016-11-15 00:41:26 -0800 | [diff] [blame] | 337 | ] |
denicija | 77bfd7c | 2016-11-15 00:41:26 -0800 | [diff] [blame] | 338 | |
Anders Carlsson | 96fccfe | 2019-02-21 16:11:40 +0100 | [diff] [blame] | 339 | configs += [ "..:common_objc" ] |
| 340 | |
denicija | 77bfd7c | 2016-11-15 00:41:26 -0800 | [diff] [blame] | 341 | deps = [ |
| 342 | ":apprtc_common", |
| 343 | ":apprtc_signaling", |
Anders Carlsson | 7bca8ca | 2018-08-30 09:30:29 +0200 | [diff] [blame] | 344 | "../sdk:framework_objc+link", |
| 345 | "../sdk:ios_framework_bundle", |
denicija | 77bfd7c | 2016-11-15 00:41:26 -0800 | [diff] [blame] | 346 | ] |
Kári Tristan Helgason | 8a1e35c | 2019-03-07 10:44:26 +0100 | [diff] [blame] | 347 | |
| 348 | libs = [ "AVFoundation.framework" ] |
denicija | 77bfd7c | 2016-11-15 00:41:26 -0800 | [diff] [blame] | 349 | } |
| 350 | |
| 351 | ios_app_bundle("AppRTCMobile") { |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 352 | testonly = true |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 353 | sources = [ "objc/AppRTCMobile/ios/main.m" ] |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 354 | |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 355 | info_plist = "objc/AppRTCMobile/ios/Info.plist" |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 356 | |
denicija | 77bfd7c | 2016-11-15 00:41:26 -0800 | [diff] [blame] | 357 | configs += [ "..:common_config" ] |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 358 | public_configs = [ "..:common_inherited_config" ] |
| 359 | |
| 360 | deps = [ |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 361 | ":AppRTCMobile_ios_bundle_data", |
denicija | 77bfd7c | 2016-11-15 00:41:26 -0800 | [diff] [blame] | 362 | ":AppRTCMobile_lib", |
Mirko Bonadei | 1a339c3 | 2017-12-14 13:06:10 +0100 | [diff] [blame] | 363 | "../sdk:framework_objc", |
Anders Carlsson | 7bca8ca | 2018-08-30 09:30:29 +0200 | [diff] [blame] | 364 | "../sdk:ios_framework_bundle", |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 365 | ] |
| 366 | |
Anders Carlsson | 358f2e0 | 2018-06-04 10:24:37 +0200 | [diff] [blame] | 367 | if (rtc_apprtcmobile_broadcast_extension) { |
| 368 | deps += [ |
| 369 | ":AppRTCMobileBroadcastSetupUI_extension_bundle", |
| 370 | ":AppRTCMobileBroadcastUpload_extension_bundle", |
| 371 | ] |
| 372 | } |
| 373 | |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 374 | if (target_cpu == "x86") { |
Artem Titov | 94b57c0 | 2019-03-21 13:35:10 +0100 | [diff] [blame] | 375 | deps += [ "//testing/iossim" ] |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 376 | } |
| 377 | } |
| 378 | |
Anders Carlsson | 358f2e0 | 2018-06-04 10:24:37 +0200 | [diff] [blame] | 379 | if (rtc_apprtcmobile_broadcast_extension) { |
| 380 | bundle_data("AppRTCMobileBroadcastUpload_extension_bundle") { |
| 381 | testonly = true |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 382 | public_deps = [ ":AppRTCMobileBroadcastUpload" ] # no-presubmit-check TODO(webrtc:8603) |
| 383 | sources = [ "$root_out_dir/AppRTCMobileBroadcastUpload.appex" ] |
| 384 | outputs = [ "{{bundle_contents_dir}}/Plugins/{{source_file_part}}" ] |
Anders Carlsson | 358f2e0 | 2018-06-04 10:24:37 +0200 | [diff] [blame] | 385 | } |
| 386 | |
| 387 | bundle_data("AppRTCMobileBroadcastSetupUI_extension_bundle") { |
| 388 | testonly = true |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 389 | public_deps = [ ":AppRTCMobileBroadcastSetupUI" ] # no-presubmit-check TODO(webrtc:8603) |
| 390 | sources = [ "$root_out_dir/AppRTCMobileBroadcastSetupUI.appex" ] |
| 391 | outputs = [ "{{bundle_contents_dir}}/Plugins/{{source_file_part}}" ] |
Anders Carlsson | 358f2e0 | 2018-06-04 10:24:37 +0200 | [diff] [blame] | 392 | } |
| 393 | |
Mirko Bonadei | 86d053c | 2019-10-17 21:32:04 +0200 | [diff] [blame] | 394 | rtc_library("AppRTCMobileBroadcastUpload_lib") { |
Anders Carlsson | 358f2e0 | 2018-06-04 10:24:37 +0200 | [diff] [blame] | 395 | testonly = true |
| 396 | sources = [ |
| 397 | "objc/AppRTCMobile/ios/broadcast_extension/ARDBroadcastSampleHandler.h", |
| 398 | "objc/AppRTCMobile/ios/broadcast_extension/ARDBroadcastSampleHandler.m", |
| 399 | ] |
| 400 | |
| 401 | deps = [ |
Anders Carlsson | 358f2e0 | 2018-06-04 10:24:37 +0200 | [diff] [blame] | 402 | ":apprtc_signaling", |
Anders Carlsson | 7bca8ca | 2018-08-30 09:30:29 +0200 | [diff] [blame] | 403 | "../sdk:framework_objc+link", |
| 404 | "../sdk:ios_framework_bundle", |
Anders Carlsson | 358f2e0 | 2018-06-04 10:24:37 +0200 | [diff] [blame] | 405 | ] |
| 406 | |
| 407 | libs = [ "ReplayKit.framework" ] |
| 408 | } |
| 409 | |
| 410 | ios_appex_bundle("AppRTCMobileBroadcastUpload") { |
| 411 | testonly = true |
| 412 | configs += [ "..:common_config" ] |
| 413 | public_configs = [ "..:common_inherited_config" ] |
| 414 | |
| 415 | info_plist = "objc/AppRTCMobile/ios/broadcast_extension/BroadcastUploadInfo.plist" |
| 416 | |
| 417 | deps = [ |
| 418 | ":AppRTCMobileBroadcastUpload_lib", |
| 419 | "../sdk:framework_objc", |
| 420 | ] |
| 421 | } |
| 422 | |
| 423 | ios_appex_bundle("AppRTCMobileBroadcastSetupUI") { |
| 424 | sources = [ |
| 425 | "objc/AppRTCMobile/ios/broadcast_extension/ARDBroadcastSetupViewController.h", |
| 426 | "objc/AppRTCMobile/ios/broadcast_extension/ARDBroadcastSetupViewController.m", |
| 427 | ] |
| 428 | |
| 429 | info_plist = "objc/AppRTCMobile/ios/broadcast_extension/BroadcastSetupUIInfo.plist" |
| 430 | |
| 431 | libs = [ "ReplayKit.framework" ] |
| 432 | |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 433 | deps = [ ":AppRTCMobile_ios_bundle_data" ] |
Anders Carlsson | 358f2e0 | 2018-06-04 10:24:37 +0200 | [diff] [blame] | 434 | } |
| 435 | } |
| 436 | |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 437 | bundle_data("AppRTCMobile_ios_bundle_data") { |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 438 | sources = [ |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 439 | "objc/AppRTCMobile/ios/resources/Roboto-Regular.ttf", |
Daniela | 012b56b | 2017-11-15 13:15:24 +0100 | [diff] [blame] | 440 | |
| 441 | # Sample video taken from https://media.xiph.org/video/derf/ |
| 442 | "objc/AppRTCMobile/ios/resources/foreman.mp4", |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 443 | "objc/AppRTCMobile/ios/resources/iPhone5@2x.png", |
| 444 | "objc/AppRTCMobile/ios/resources/iPhone6@2x.png", |
| 445 | "objc/AppRTCMobile/ios/resources/iPhone6p@3x.png", |
| 446 | "objc/AppRTCMobile/ios/resources/ic_call_end_black_24dp.png", |
| 447 | "objc/AppRTCMobile/ios/resources/ic_call_end_black_24dp@2x.png", |
| 448 | "objc/AppRTCMobile/ios/resources/ic_clear_black_24dp.png", |
| 449 | "objc/AppRTCMobile/ios/resources/ic_clear_black_24dp@2x.png", |
denicija | 6d6762c | 2016-10-28 04:53:16 -0700 | [diff] [blame] | 450 | "objc/AppRTCMobile/ios/resources/ic_settings_black_24dp.png", |
| 451 | "objc/AppRTCMobile/ios/resources/ic_settings_black_24dp@2x.png", |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 452 | "objc/AppRTCMobile/ios/resources/ic_surround_sound_black_24dp.png", |
| 453 | "objc/AppRTCMobile/ios/resources/ic_surround_sound_black_24dp@2x.png", |
| 454 | "objc/AppRTCMobile/ios/resources/ic_switch_video_black_24dp.png", |
| 455 | "objc/AppRTCMobile/ios/resources/ic_switch_video_black_24dp@2x.png", |
| 456 | "objc/AppRTCMobile/ios/resources/mozart.mp3", |
andersc | b5ed905 | 2017-08-15 04:07:12 -0700 | [diff] [blame] | 457 | "objc/Icon-120.png", |
| 458 | "objc/Icon-180.png", |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 459 | "objc/Icon.png", |
| 460 | ] |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 461 | outputs = [ "{{bundle_resources_dir}}/{{source_file_part}}" ] |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 462 | } |
Anders Carlsson | 7311918 | 2018-03-15 09:41:03 +0100 | [diff] [blame] | 463 | |
Mirko Bonadei | 86d053c | 2019-10-17 21:32:04 +0200 | [diff] [blame] | 464 | rtc_library("ObjCNativeAPIDemo_lib") { |
Anders Carlsson | 7311918 | 2018-03-15 09:41:03 +0100 | [diff] [blame] | 465 | testonly = true |
| 466 | sources = [ |
| 467 | "objcnativeapi/objc/NADAppDelegate.h", |
| 468 | "objcnativeapi/objc/NADAppDelegate.m", |
| 469 | "objcnativeapi/objc/NADViewController.h", |
| 470 | "objcnativeapi/objc/NADViewController.mm", |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 471 | "objcnativeapi/objc/objc_call_client.h", |
| 472 | "objcnativeapi/objc/objc_call_client.mm", |
Anders Carlsson | 7311918 | 2018-03-15 09:41:03 +0100 | [diff] [blame] | 473 | ] |
| 474 | |
Anders Carlsson | 7311918 | 2018-03-15 09:41:03 +0100 | [diff] [blame] | 475 | deps = [ |
| 476 | "../api:libjingle_peerconnection_api", |
Mirko Bonadei | d970807 | 2019-01-25 20:26:48 +0100 | [diff] [blame] | 477 | "../api:scoped_refptr", |
Anders Carlsson | 7311918 | 2018-03-15 09:41:03 +0100 | [diff] [blame] | 478 | "../api/audio_codecs:builtin_audio_decoder_factory", |
| 479 | "../api/audio_codecs:builtin_audio_encoder_factory", |
Danil Chapovalov | 4ba04b7 | 2019-06-26 15:49:47 +0200 | [diff] [blame] | 480 | "../api/rtc_event_log:rtc_event_log_factory", |
Danil Chapovalov | aaa1143 | 2019-05-17 13:20:14 +0200 | [diff] [blame] | 481 | "../api/task_queue:default_task_queue_factory", |
Anders Carlsson | 7311918 | 2018-03-15 09:41:03 +0100 | [diff] [blame] | 482 | "../media:rtc_audio_video", |
Artem Titov | 94b57c0 | 2019-03-21 13:35:10 +0100 | [diff] [blame] | 483 | "../modules/audio_processing", |
Alessio Bazzica | b768e88 | 2018-11-07 14:29:54 +0000 | [diff] [blame] | 484 | "../modules/audio_processing:api", |
Anders Carlsson | 7311918 | 2018-03-15 09:41:03 +0100 | [diff] [blame] | 485 | "../pc:libjingle_peerconnection", |
Artem Titov | 94b57c0 | 2019-03-21 13:35:10 +0100 | [diff] [blame] | 486 | "../rtc_base", |
Anders Carlsson | 7bca8ca | 2018-08-30 09:30:29 +0200 | [diff] [blame] | 487 | "../sdk:base_objc", |
Anders Carlsson | 7311918 | 2018-03-15 09:41:03 +0100 | [diff] [blame] | 488 | "../sdk:default_codec_factory_objc", |
Anders Carlsson | 7bca8ca | 2018-08-30 09:30:29 +0200 | [diff] [blame] | 489 | "../sdk:helpers_objc", |
Anders Carlsson | 7311918 | 2018-03-15 09:41:03 +0100 | [diff] [blame] | 490 | "../sdk:native_api", |
| 491 | "../sdk:ui_objc", |
Anders Carlsson | 7bca8ca | 2018-08-30 09:30:29 +0200 | [diff] [blame] | 492 | "../sdk:videocapture_objc", |
Anders Carlsson | 7311918 | 2018-03-15 09:41:03 +0100 | [diff] [blame] | 493 | "../sdk:videotoolbox_objc", |
Anders Carlsson | 7311918 | 2018-03-15 09:41:03 +0100 | [diff] [blame] | 494 | ] |
| 495 | |
| 496 | if (current_cpu == "arm64") { |
| 497 | deps += [ "../sdk:metal_objc" ] |
| 498 | } |
| 499 | } |
| 500 | |
| 501 | ios_app_bundle("ObjCNativeAPIDemo") { |
| 502 | testonly = true |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 503 | sources = [ "objcnativeapi/objc/main.m" ] |
Anders Carlsson | 7311918 | 2018-03-15 09:41:03 +0100 | [diff] [blame] | 504 | |
| 505 | info_plist = "objcnativeapi/Info.plist" |
| 506 | |
| 507 | configs += [ "..:common_config" ] |
| 508 | public_configs = [ "..:common_inherited_config" ] |
| 509 | |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 510 | deps = [ ":ObjCNativeAPIDemo_lib" ] |
Anders Carlsson | 7311918 | 2018-03-15 09:41:03 +0100 | [diff] [blame] | 511 | |
| 512 | if (target_cpu == "x86") { |
Artem Titov | 94b57c0 | 2019-03-21 13:35:10 +0100 | [diff] [blame] | 513 | deps += [ "//testing/iossim" ] |
Anders Carlsson | 7311918 | 2018-03-15 09:41:03 +0100 | [diff] [blame] | 514 | } |
| 515 | } |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 516 | } |
| 517 | |
| 518 | if (is_mac) { |
Mirko Bonadei | 86d053c | 2019-10-17 21:32:04 +0200 | [diff] [blame] | 519 | rtc_library("AppRTCMobile_lib") { |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 520 | testonly = true |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 521 | sources = [ |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 522 | "objc/AppRTCMobile/mac/APPRTCAppDelegate.h", |
| 523 | "objc/AppRTCMobile/mac/APPRTCAppDelegate.m", |
| 524 | "objc/AppRTCMobile/mac/APPRTCViewController.h", |
| 525 | "objc/AppRTCMobile/mac/APPRTCViewController.m", |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 526 | ] |
jianjun.zhu | c024740 | 2017-07-11 06:20:45 -0700 | [diff] [blame] | 527 | configs += [ "..:common_objc" ] |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 528 | deps = [ |
| 529 | ":apprtc_common", |
| 530 | ":apprtc_signaling", |
Anders Carlsson | 7bca8ca | 2018-08-30 09:30:29 +0200 | [diff] [blame] | 531 | "../sdk:mac_framework_objc+link", |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 532 | ] |
| 533 | } |
| 534 | |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 535 | mac_app_bundle("AppRTCMobile") { |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 536 | testonly = true |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 537 | output_name = "AppRTCMobile" |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 538 | |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 539 | sources = [ "objc/AppRTCMobile/mac/main.m" ] |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 540 | |
| 541 | public_configs = [ "..:common_inherited_config" ] |
| 542 | |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 543 | info_plist = "objc/AppRTCMobile/mac/Info.plist" |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 544 | |
| 545 | libs = [ "AppKit.framework" ] |
| 546 | |
Anders Carlsson | 24d8ec3 | 2018-12-10 14:04:12 +0100 | [diff] [blame] | 547 | ldflags = [ |
| 548 | "-rpath", |
| 549 | "@executable_path/../Frameworks", |
| 550 | ] |
| 551 | |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 552 | deps = [ |
denicija | 77bfd7c | 2016-11-15 00:41:26 -0800 | [diff] [blame] | 553 | ":AppRTCMobile_lib", |
Anders Carlsson | 7bca8ca | 2018-08-30 09:30:29 +0200 | [diff] [blame] | 554 | "../sdk:mac_framework_bundle", |
| 555 | "../sdk:mac_framework_objc+link", |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 556 | ] |
| 557 | } |
| 558 | } |
| 559 | |
| 560 | config("socketrocket_include_config") { |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 561 | include_dirs = [ "objc/AppRTCMobile/third_party/SocketRocket" ] |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 562 | } |
| 563 | |
| 564 | config("socketrocket_warning_config") { |
| 565 | # GN orders flags on a target before flags from configs. The default config |
| 566 | # adds these flags so to cancel them out they need to come from a config and |
| 567 | # cannot be on the target directly. |
| 568 | cflags = [ |
| 569 | "-Wno-deprecated-declarations", |
| 570 | "-Wno-nonnull", |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 571 | "-Wno-semicolon-before-method-body", |
kthelgason | e47de1a | 2017-02-24 01:56:01 -0800 | [diff] [blame] | 572 | "-Wno-unused-variable", |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 573 | ] |
| 574 | |
henrika | 27d8b61 | 2016-09-21 04:13:00 -0700 | [diff] [blame] | 575 | cflags_objc = [ |
| 576 | # Enabled for cflags_objc in build/config/compiler/BUILD.gn. |
| 577 | "-Wno-objc-missing-property-synthesis", |
henrika | 27d8b61 | 2016-09-21 04:13:00 -0700 | [diff] [blame] | 578 | ] |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 579 | } |
| 580 | |
Mirko Bonadei | 86d053c | 2019-10-17 21:32:04 +0200 | [diff] [blame] | 581 | rtc_library("socketrocket") { |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 582 | testonly = true |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 583 | sources = [ |
Magnus Jedvert | c1815cf | 2016-09-27 10:10:41 +0200 | [diff] [blame] | 584 | "objc/AppRTCMobile/third_party/SocketRocket/SRWebSocket.h", |
| 585 | "objc/AppRTCMobile/third_party/SocketRocket/SRWebSocket.m", |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 586 | ] |
kthelgason | c097710 | 2017-04-24 00:57:16 -0700 | [diff] [blame] | 587 | configs += [ ":socketrocket_warning_config" ] |
ehmaldonado | e9cc686 | 2016-09-05 06:10:18 -0700 | [diff] [blame] | 588 | public_configs = [ ":socketrocket_include_config" ] |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 589 | |
| 590 | libs = [ |
| 591 | "CFNetwork.framework", |
Oleh Prypin | b3f78de | 2019-07-18 22:25:48 +0200 | [diff] [blame] | 592 | "Security.framework", |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 593 | "icucore", |
| 594 | ] |
| 595 | } |
adam.fedor | bcc5d87 | 2016-11-07 14:53:28 -0800 | [diff] [blame] | 596 | |
| 597 | if (rtc_include_tests) { |
kthelgason | 4065a57 | 2017-02-14 04:58:56 -0800 | [diff] [blame] | 598 | # TODO(kthelgason): compile xctests on mac when chromium supports it. |
| 599 | if (is_ios) { |
Mirko Bonadei | 86d053c | 2019-10-17 21:32:04 +0200 | [diff] [blame] | 600 | rtc_library("apprtcmobile_test_sources") { |
Mirko Bonadei | cbaaaed | 2018-02-19 15:14:04 +0100 | [diff] [blame] | 601 | # iOS must use WebRTC.framework which is dynamically linked. |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 602 | testonly = true |
kthelgason | 4065a57 | 2017-02-14 04:58:56 -0800 | [diff] [blame] | 603 | include_dirs = [ |
| 604 | "objc/AppRTCMobile", |
| 605 | "objc/AppRTCMobile/ios", |
| 606 | ] |
kthelgason | 4065a57 | 2017-02-14 04:58:56 -0800 | [diff] [blame] | 607 | sources = [ |
| 608 | "objc/AppRTCMobile/tests/ARDAppClient_xctest.mm", |
Daniela | 012b56b | 2017-11-15 13:15:24 +0100 | [diff] [blame] | 609 | "objc/AppRTCMobile/tests/ARDFileCaptureController_xctest.mm", |
kthelgason | 4065a57 | 2017-02-14 04:58:56 -0800 | [diff] [blame] | 610 | "objc/AppRTCMobile/tests/ARDSettingsModel_xctest.mm", |
| 611 | ] |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 612 | deps = [ |
kthelgason | 4065a57 | 2017-02-14 04:58:56 -0800 | [diff] [blame] | 613 | ":AppRTCMobile_lib", |
Mirko Bonadei | cbaaaed | 2018-02-19 15:14:04 +0100 | [diff] [blame] | 614 | ":apprtc_signaling", |
Artem Titov | 94b57c0 | 2019-03-21 13:35:10 +0100 | [diff] [blame] | 615 | "../rtc_base", |
Anders Carlsson | 7bca8ca | 2018-08-30 09:30:29 +0200 | [diff] [blame] | 616 | "../sdk:framework_objc+link", |
| 617 | "../sdk:ios_framework_bundle", |
kthelgason | 4065a57 | 2017-02-14 04:58:56 -0800 | [diff] [blame] | 618 | "//build/config/ios:xctest", |
| 619 | "//third_party/ocmock", |
| 620 | ] |
adam.fedor | bcc5d87 | 2016-11-07 14:53:28 -0800 | [diff] [blame] | 621 | } |
| 622 | |
kthelgason | 4065a57 | 2017-02-14 04:58:56 -0800 | [diff] [blame] | 623 | rtc_ios_xctest_test("apprtcmobile_tests") { |
| 624 | info_plist = "objc/AppRTCMobile/ios/Info.plist" |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 625 | sources = [ "objc/AppRTCMobile/tests/main.mm" ] |
kthelgason | 4065a57 | 2017-02-14 04:58:56 -0800 | [diff] [blame] | 626 | deps = [ |
Mirko Bonadei | cbaaaed | 2018-02-19 15:14:04 +0100 | [diff] [blame] | 627 | ":AppRTCMobile_lib", |
kthelgason | 4065a57 | 2017-02-14 04:58:56 -0800 | [diff] [blame] | 628 | ":apprtcmobile_test_sources", |
Mirko Bonadei | 1a339c3 | 2017-12-14 13:06:10 +0100 | [diff] [blame] | 629 | "../sdk:framework_objc", |
Artem Titarenko | 34fc346 | 2018-11-06 12:29:29 +0100 | [diff] [blame] | 630 | "//test:test_support", |
kthelgason | 4065a57 | 2017-02-14 04:58:56 -0800 | [diff] [blame] | 631 | ] |
| 632 | ldflags = [ "-all_load" ] |
| 633 | } |
adam.fedor | bcc5d87 | 2016-11-07 14:53:28 -0800 | [diff] [blame] | 634 | } |
| 635 | } |
tkchin | 2ddfdba | 2016-08-07 21:37:45 -0700 | [diff] [blame] | 636 | } |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 637 | |
| 638 | if (is_linux || is_win) { |
ehmaldonado | 38a2132 | 2016-09-02 04:10:34 -0700 | [diff] [blame] | 639 | rtc_executable("peerconnection_client") { |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 640 | testonly = true |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 641 | sources = [ |
| 642 | "peerconnection/client/conductor.cc", |
| 643 | "peerconnection/client/conductor.h", |
| 644 | "peerconnection/client/defaults.cc", |
| 645 | "peerconnection/client/defaults.h", |
| 646 | "peerconnection/client/peer_connection_client.cc", |
| 647 | "peerconnection/client/peer_connection_client.h", |
| 648 | ] |
ehmaldonado | 7a2ce0b | 2016-09-05 01:35:44 -0700 | [diff] [blame] | 649 | |
Patrik Höglund | b5b5bce | 2017-11-13 10:19:58 +0100 | [diff] [blame] | 650 | deps = [ |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 651 | "../api:audio_options_api", |
Mirko Bonadei | 2ff3f49 | 2018-11-22 09:00:13 +0100 | [diff] [blame] | 652 | "../api:create_peerconnection_factory", |
Mirko Bonadei | 34814c7 | 2018-01-11 10:13:56 +0100 | [diff] [blame] | 653 | "../api:libjingle_peerconnection_api", |
Niels Möller | e942b14 | 2019-09-17 14:30:41 +0200 | [diff] [blame] | 654 | "../api:media_stream_interface", |
Mirko Bonadei | d970807 | 2019-01-25 20:26:48 +0100 | [diff] [blame] | 655 | "../api:scoped_refptr", |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 656 | "../api/audio:audio_mixer_api", |
| 657 | "../api/audio_codecs:audio_codecs_api", |
Niels Möller | c6ce9c5 | 2018-05-11 11:15:30 +0200 | [diff] [blame] | 658 | "../api/video:video_frame_i420", |
Chen Xing | 5d24b16 | 2019-06-10 12:59:38 +0200 | [diff] [blame] | 659 | "../api/video:video_rtp_headers", |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 660 | "../api/video_codecs:video_codecs_api", |
| 661 | "../media:rtc_media_base", |
| 662 | "../p2p:rtc_p2p", |
Patrik Höglund | a8005cf | 2017-12-13 16:05:42 +0100 | [diff] [blame] | 663 | "../rtc_base:checks", |
Artem Titov | e41c433 | 2018-07-25 15:04:28 +0200 | [diff] [blame] | 664 | "../rtc_base/third_party/sigslot", |
Bjorn Terelius | 3e67676 | 2018-10-29 15:26:27 +0100 | [diff] [blame] | 665 | "../system_wrappers:field_trial", |
| 666 | "../test:field_trial", |
Kári Tristan Helgason | ede7cb2 | 2019-03-06 10:34:09 +0100 | [diff] [blame] | 667 | "../test:platform_video_capturer", |
Tommi | 25eb47c | 2019-08-29 16:39:05 +0200 | [diff] [blame] | 668 | "../test:rtp_test_utils", |
Niels Möller | b76be9a | 2018-12-20 16:28:23 +0100 | [diff] [blame] | 669 | "//third_party/abseil-cpp/absl/memory", |
Yves Gerey | 3e70781 | 2018-11-28 16:47:49 +0100 | [diff] [blame] | 670 | "//third_party/abseil-cpp/absl/types:optional", |
Patrik Höglund | b5b5bce | 2017-11-13 10:19:58 +0100 | [diff] [blame] | 671 | ] |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 672 | if (is_win) { |
| 673 | sources += [ |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 674 | "peerconnection/client/flag_defs.h", |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 675 | "peerconnection/client/main.cc", |
| 676 | "peerconnection/client/main_wnd.cc", |
| 677 | "peerconnection/client/main_wnd.h", |
| 678 | ] |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 679 | configs += [ "//build/config/win:windowed" ] |
jianjun.zhu | c024740 | 2017-07-11 06:20:45 -0700 | [diff] [blame] | 680 | deps += [ "../media:rtc_media_base" ] |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 681 | } |
| 682 | if (is_linux) { |
| 683 | sources += [ |
| 684 | "peerconnection/client/linux/main.cc", |
| 685 | "peerconnection/client/linux/main_wnd.cc", |
| 686 | "peerconnection/client/linux/main_wnd.h", |
| 687 | ] |
Henrik Kjellander | efbde2c | 2017-03-27 08:28:27 +0200 | [diff] [blame] | 688 | cflags = [ "-Wno-deprecated-declarations" ] |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 689 | libs = [ |
| 690 | "X11", |
| 691 | "Xcomposite", |
| 692 | "Xext", |
| 693 | "Xrender", |
| 694 | ] |
thomasanderson | ef16e99 | 2016-12-13 02:57:43 -0800 | [diff] [blame] | 695 | deps += [ "//build/config/linux/gtk" ] |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 696 | } |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 697 | |
| 698 | deps += [ |
Niels Möller | 8366e17 | 2018-02-14 12:20:13 +0100 | [diff] [blame] | 699 | "../api:libjingle_peerconnection_api", |
Karl Wiberg | 1b0eae3 | 2017-10-17 14:48:54 +0200 | [diff] [blame] | 700 | "../api/audio_codecs:builtin_audio_decoder_factory", |
| 701 | "../api/audio_codecs:builtin_audio_encoder_factory", |
Niels Möller | c6ce9c5 | 2018-05-11 11:15:30 +0200 | [diff] [blame] | 702 | "../api/video:video_frame", |
Chen Xing | 5d24b16 | 2019-06-10 12:59:38 +0200 | [diff] [blame] | 703 | "../api/video:video_rtp_headers", |
Anders Carlsson | 6753795 | 2018-05-03 11:28:29 +0200 | [diff] [blame] | 704 | "../api/video_codecs:builtin_video_decoder_factory", |
| 705 | "../api/video_codecs:builtin_video_encoder_factory", |
Mirko Bonadei | 75baa49 | 2018-01-11 17:07:30 +0100 | [diff] [blame] | 706 | "../media:rtc_audio_video", |
Artem Titov | 94b57c0 | 2019-03-21 13:35:10 +0100 | [diff] [blame] | 707 | "../modules/audio_device", |
| 708 | "../modules/audio_processing", |
Alessio Bazzica | b768e88 | 2018-11-07 14:29:54 +0000 | [diff] [blame] | 709 | "../modules/audio_processing:api", |
jianjun.zhu | c024740 | 2017-07-11 06:20:45 -0700 | [diff] [blame] | 710 | "../modules/video_capture:video_capture_module", |
| 711 | "../pc:libjingle_peerconnection", |
Niels Möller | b76be9a | 2018-12-20 16:28:23 +0100 | [diff] [blame] | 712 | "../pc:peerconnection", |
Artem Titov | 94b57c0 | 2019-03-21 13:35:10 +0100 | [diff] [blame] | 713 | "../rtc_base", |
ehmaldonado | f6a861a | 2017-07-19 10:40:47 -0700 | [diff] [blame] | 714 | "../rtc_base:rtc_base_approved", |
| 715 | "../rtc_base:rtc_json", |
Niels Möller | b76be9a | 2018-12-20 16:28:23 +0100 | [diff] [blame] | 716 | "../test:video_test_common", |
Mirko Bonadei | 0be40bf | 2019-07-16 18:40:05 +0200 | [diff] [blame] | 717 | "//third_party/abseil-cpp/absl/flags:flag", |
| 718 | "//third_party/abseil-cpp/absl/flags:parse", |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 719 | "//third_party/libyuv", |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 720 | ] |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 721 | } |
kjellander | d4626e5 | 2016-09-07 02:33:01 -0700 | [diff] [blame] | 722 | |
ehmaldonado | 38a2132 | 2016-09-02 04:10:34 -0700 | [diff] [blame] | 723 | rtc_executable("peerconnection_server") { |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 724 | testonly = true |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 725 | sources = [ |
| 726 | "peerconnection/server/data_socket.cc", |
| 727 | "peerconnection/server/data_socket.h", |
| 728 | "peerconnection/server/main.cc", |
| 729 | "peerconnection/server/peer_channel.cc", |
| 730 | "peerconnection/server/peer_channel.h", |
| 731 | "peerconnection/server/utils.cc", |
| 732 | "peerconnection/server/utils.h", |
| 733 | ] |
| 734 | deps = [ |
ehmaldonado | f6a861a | 2017-07-19 10:40:47 -0700 | [diff] [blame] | 735 | "../rtc_base:rtc_base_approved", |
Bjorn Terelius | 3e67676 | 2018-10-29 15:26:27 +0100 | [diff] [blame] | 736 | "../system_wrappers:field_trial", |
| 737 | "../test:field_trial", |
Mirko Bonadei | 04cffe3 | 2019-06-25 15:43:23 +0200 | [diff] [blame] | 738 | "//third_party/abseil-cpp/absl/flags:flag", |
| 739 | "//third_party/abseil-cpp/absl/flags:parse", |
Mirko Bonadei | 76c89da | 2019-07-19 12:12:14 +0200 | [diff] [blame] | 740 | "//third_party/abseil-cpp/absl/flags:usage", |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 741 | ] |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 742 | } |
ehmaldonado | 38a2132 | 2016-09-02 04:10:34 -0700 | [diff] [blame] | 743 | rtc_executable("turnserver") { |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 744 | testonly = true |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 745 | sources = [ "turnserver/turnserver_main.cc" ] |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 746 | deps = [ |
Niels Möller | 9862c2e | 2018-10-30 12:20:03 +0100 | [diff] [blame] | 747 | ":read_auth_file", |
Niels Möller | a134204 | 2018-11-08 16:47:14 +0100 | [diff] [blame] | 748 | "../p2p:p2p_server_utils", |
jianjun.zhu | c024740 | 2017-07-11 06:20:45 -0700 | [diff] [blame] | 749 | "../p2p:rtc_p2p", |
| 750 | "../pc:rtc_pc", |
Artem Titov | 94b57c0 | 2019-03-21 13:35:10 +0100 | [diff] [blame] | 751 | "../rtc_base", |
ehmaldonado | f6a861a | 2017-07-19 10:40:47 -0700 | [diff] [blame] | 752 | "../rtc_base:rtc_base_approved", |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 753 | ] |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 754 | } |
ehmaldonado | 38a2132 | 2016-09-02 04:10:34 -0700 | [diff] [blame] | 755 | rtc_executable("stunserver") { |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 756 | testonly = true |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 757 | sources = [ "stunserver/stunserver_main.cc" ] |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 758 | deps = [ |
Niels Möller | a134204 | 2018-11-08 16:47:14 +0100 | [diff] [blame] | 759 | "../p2p:p2p_server_utils", |
jianjun.zhu | c024740 | 2017-07-11 06:20:45 -0700 | [diff] [blame] | 760 | "../p2p:rtc_p2p", |
| 761 | "../pc:rtc_pc", |
Artem Titov | 94b57c0 | 2019-03-21 13:35:10 +0100 | [diff] [blame] | 762 | "../rtc_base", |
ehmaldonado | f6a861a | 2017-07-19 10:40:47 -0700 | [diff] [blame] | 763 | "../rtc_base:rtc_base_approved", |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 764 | ] |
kthelgason | 0727f15 | 2016-08-08 09:03:23 -0700 | [diff] [blame] | 765 | } |
| 766 | } |
charujain | aca3a24 | 2016-11-01 03:09:15 -0700 | [diff] [blame] | 767 | |
qiangchen | 42f96d5 | 2017-08-08 17:08:03 -0700 | [diff] [blame] | 768 | if (is_win || is_android) { |
gyzhou | ad7cad8 | 2017-05-11 16:10:03 -0700 | [diff] [blame] | 769 | rtc_shared_library("webrtc_unity_plugin") { |
| 770 | testonly = true |
| 771 | sources = [ |
| 772 | "unityplugin/simple_peer_connection.cc", |
| 773 | "unityplugin/simple_peer_connection.h", |
| 774 | "unityplugin/unity_plugin_apis.cc", |
| 775 | "unityplugin/unity_plugin_apis.h", |
gyzhou | b38f386 | 2017-07-25 16:04:31 -0700 | [diff] [blame] | 776 | "unityplugin/video_observer.cc", |
| 777 | "unityplugin/video_observer.h", |
gyzhou | ad7cad8 | 2017-05-11 16:10:03 -0700 | [diff] [blame] | 778 | ] |
qiangchen | 42f96d5 | 2017-08-08 17:08:03 -0700 | [diff] [blame] | 779 | |
| 780 | if (is_android) { |
| 781 | sources += [ |
Steve Anton | 10542f2 | 2019-01-11 09:11:00 -0800 | [diff] [blame] | 782 | "unityplugin/class_reference_holder.cc", |
| 783 | "unityplugin/class_reference_holder.h", |
qiangchen | 42f96d5 | 2017-08-08 17:08:03 -0700 | [diff] [blame] | 784 | "unityplugin/jni_onload.cc", |
| 785 | ] |
Qiang Chen | 43fb912 | 2017-12-20 10:47:36 -0800 | [diff] [blame] | 786 | suppressed_configs += [ "//build/config/android:hide_all_but_jni_onload" ] |
qiangchen | 42f96d5 | 2017-08-08 17:08:03 -0700 | [diff] [blame] | 787 | } |
| 788 | |
qiangchen | 42f96d5 | 2017-08-08 17:08:03 -0700 | [diff] [blame] | 789 | if (is_win) { |
Mirko Bonadei | f957dd9 | 2018-07-11 10:47:42 +0200 | [diff] [blame] | 790 | configs += [ "//build/config/win:windowed" ] |
qiangchen | 42f96d5 | 2017-08-08 17:08:03 -0700 | [diff] [blame] | 791 | } |
gyzhou | ad7cad8 | 2017-05-11 16:10:03 -0700 | [diff] [blame] | 792 | deps = [ |
Mirko Bonadei | 2ff3f49 | 2018-11-22 09:00:13 +0100 | [diff] [blame] | 793 | "../api:create_peerconnection_factory", |
Mirko Bonadei | 34814c7 | 2018-01-11 10:13:56 +0100 | [diff] [blame] | 794 | "../api:libjingle_peerconnection_api", |
Niels Möller | e942b14 | 2019-09-17 14:30:41 +0200 | [diff] [blame] | 795 | "../api:media_stream_interface", |
Qiang Chen | 51e2046 | 2017-12-05 11:11:21 -0800 | [diff] [blame] | 796 | "../api/audio_codecs:builtin_audio_decoder_factory", |
| 797 | "../api/audio_codecs:builtin_audio_encoder_factory", |
Niels Möller | c6ce9c5 | 2018-05-11 11:15:30 +0200 | [diff] [blame] | 798 | "../api/video:video_frame", |
Chen Xing | 5d24b16 | 2019-06-10 12:59:38 +0200 | [diff] [blame] | 799 | "../api/video:video_rtp_headers", |
Mirko Bonadei | 75baa49 | 2018-01-11 17:07:30 +0100 | [diff] [blame] | 800 | "../media:rtc_audio_video", |
Anders Carlsson | a114c88 | 2018-01-04 15:10:22 +0100 | [diff] [blame] | 801 | "../media:rtc_internal_video_codecs", |
jianjun.zhu | c024740 | 2017-07-11 06:20:45 -0700 | [diff] [blame] | 802 | "../media:rtc_media", |
| 803 | "../media:rtc_media_base", |
Artem Titov | 94b57c0 | 2019-03-21 13:35:10 +0100 | [diff] [blame] | 804 | "../modules/audio_device", |
| 805 | "../modules/audio_processing", |
Alessio Bazzica | b768e88 | 2018-11-07 14:29:54 +0000 | [diff] [blame] | 806 | "../modules/audio_processing:api", |
jianjun.zhu | c024740 | 2017-07-11 06:20:45 -0700 | [diff] [blame] | 807 | "../modules/video_capture:video_capture_module", |
| 808 | "../pc:libjingle_peerconnection", |
Niels Möller | 0a59535 | 2019-01-02 15:12:38 +0100 | [diff] [blame] | 809 | "../pc:peerconnection", |
Artem Titov | 94b57c0 | 2019-03-21 13:35:10 +0100 | [diff] [blame] | 810 | "../rtc_base", |
Kári Tristan Helgason | ede7cb2 | 2019-03-06 10:34:09 +0100 | [diff] [blame] | 811 | "../test:platform_video_capturer", |
Niels Möller | 0a59535 | 2019-01-02 15:12:38 +0100 | [diff] [blame] | 812 | "../test:video_test_common", |
Karl Wiberg | 918f50c | 2018-07-05 11:40:33 +0200 | [diff] [blame] | 813 | "//third_party/abseil-cpp/absl/memory", |
gyzhou | ad7cad8 | 2017-05-11 16:10:03 -0700 | [diff] [blame] | 814 | ] |
qiangchen | 42f96d5 | 2017-08-08 17:08:03 -0700 | [diff] [blame] | 815 | if (is_android) { |
George Zhou | 2770c3d | 2018-03-07 09:58:54 -0800 | [diff] [blame] | 816 | deps += [ |
Artem Titov | 94b57c0 | 2019-03-21 13:35:10 +0100 | [diff] [blame] | 817 | "../modules/utility", |
George Zhou | 2770c3d | 2018-03-07 09:58:54 -0800 | [diff] [blame] | 818 | "../sdk/android:libjingle_peerconnection_jni", |
| 819 | ] |
qiangchen | 42f96d5 | 2017-08-08 17:08:03 -0700 | [diff] [blame] | 820 | } |
| 821 | } |
| 822 | } |
| 823 | |
| 824 | if (is_android) { |
Mirko Bonadei | fbb3b7d | 2017-11-07 15:36:33 +0000 | [diff] [blame] | 825 | rtc_android_library("webrtc_unity_java") { |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 826 | sources = [ "unityplugin/java/src/org/webrtc/UnityUtility.java" ] |
qiangchen | 42f96d5 | 2017-08-08 17:08:03 -0700 | [diff] [blame] | 827 | deps = [ |
| 828 | "../rtc_base:base_java", |
Artem Titarenko | 69540f4 | 2018-12-10 12:30:46 +0100 | [diff] [blame] | 829 | "../sdk/android:camera_java", |
qiangchen | 42f96d5 | 2017-08-08 17:08:03 -0700 | [diff] [blame] | 830 | "../sdk/android:libjingle_peerconnection_java", |
Artem Titarenko | 69540f4 | 2018-12-10 12:30:46 +0100 | [diff] [blame] | 831 | "../sdk/android:peerconnection_java", |
| 832 | "../sdk/android:video_java", |
Peter Wen | 7bc331f | 2019-03-06 09:18:57 -0500 | [diff] [blame] | 833 | "//third_party/android_deps:com_android_support_support_annotations_java", |
qiangchen | 42f96d5 | 2017-08-08 17:08:03 -0700 | [diff] [blame] | 834 | ] |
| 835 | } |
| 836 | |
| 837 | dist_jar("libwebrtc_unity") { |
| 838 | _target_dir_name = get_label_info(":$target_name", "dir") |
| 839 | output = "${root_out_dir}/lib.java${_target_dir_name}/${target_name}.jar" |
George Zhou | 2770c3d | 2018-03-07 09:58:54 -0800 | [diff] [blame] | 840 | direct_deps_only = false |
qiangchen | 42f96d5 | 2017-08-08 17:08:03 -0700 | [diff] [blame] | 841 | use_interface_jars = false |
George Zhou | 2770c3d | 2018-03-07 09:58:54 -0800 | [diff] [blame] | 842 | use_unprocessed_jars = false |
Oleh Prypin | 86021d9 | 2017-09-24 22:29:06 +0200 | [diff] [blame] | 843 | requires_android = true |
qiangchen | 42f96d5 | 2017-08-08 17:08:03 -0700 | [diff] [blame] | 844 | deps = [ |
| 845 | ":webrtc_unity_java", |
qiangchen | 42f96d5 | 2017-08-08 17:08:03 -0700 | [diff] [blame] | 846 | "../rtc_base:base_java", |
| 847 | "../sdk/android:libjingle_peerconnection_java", |
| 848 | "../sdk/android:libjingle_peerconnection_metrics_default_java", |
Peter Wen | 7bc331f | 2019-03-06 09:18:57 -0500 | [diff] [blame] | 849 | "//third_party/android_deps:com_android_support_support_annotations_java", |
qiangchen | 42f96d5 | 2017-08-08 17:08:03 -0700 | [diff] [blame] | 850 | ] |
gyzhou | ad7cad8 | 2017-05-11 16:10:03 -0700 | [diff] [blame] | 851 | } |
Mirko Bonadei | 73aa2de | 2020-01-20 15:28:57 +0100 | [diff] [blame] | 852 | |
| 853 | junit_binary("android_examples_junit_tests") { |
| 854 | sources = [ |
| 855 | "androidjunit/src/org/appspot/apprtc/BluetoothManagerTest.java", |
| 856 | "androidjunit/src/org/appspot/apprtc/DirectRTCClientTest.java", |
| 857 | "androidjunit/src/org/appspot/apprtc/TCPChannelClientTest.java", |
| 858 | ] |
| 859 | |
| 860 | deps = [ |
| 861 | ":AppRTCMobile_javalib", |
| 862 | "//base:base_java_test_support", |
| 863 | "//third_party/google-truth:google_truth_java", |
| 864 | ] |
| 865 | |
| 866 | additional_jar_files = [ [ |
| 867 | "../sdk/android/tests/resources/robolectric.properties", |
| 868 | "robolectric.properties", |
| 869 | ] ] |
| 870 | } |
gyzhou | ad7cad8 | 2017-05-11 16:10:03 -0700 | [diff] [blame] | 871 | } |
| 872 | |
charujain | aca3a24 | 2016-11-01 03:09:15 -0700 | [diff] [blame] | 873 | if (!build_with_chromium) { |
| 874 | # Doesn't build within Chrome on Win. |
| 875 | rtc_executable("stun_prober") { |
kjellander | 1993b1d | 2017-03-06 00:29:21 -0800 | [diff] [blame] | 876 | testonly = true |
Mirko Bonadei | ccbe95f | 2020-01-21 12:10:10 +0100 | [diff] [blame] | 877 | sources = [ "stunprober/main.cc" ] |
charujain | aca3a24 | 2016-11-01 03:09:15 -0700 | [diff] [blame] | 878 | deps = [ |
| 879 | "../p2p:libstunprober", |
| 880 | "../p2p:rtc_p2p", |
Artem Titov | 94b57c0 | 2019-03-21 13:35:10 +0100 | [diff] [blame] | 881 | "../rtc_base", |
Patrik Höglund | a8005cf | 2017-12-13 16:05:42 +0100 | [diff] [blame] | 882 | "../rtc_base:checks", |
ehmaldonado | f6a861a | 2017-07-19 10:40:47 -0700 | [diff] [blame] | 883 | "../rtc_base:rtc_base_approved", |
Mirko Bonadei | 0be40bf | 2019-07-16 18:40:05 +0200 | [diff] [blame] | 884 | "//third_party/abseil-cpp/absl/flags:flag", |
| 885 | "//third_party/abseil-cpp/absl/flags:parse", |
charujain | aca3a24 | 2016-11-01 03:09:15 -0700 | [diff] [blame] | 886 | ] |
| 887 | } |
| 888 | } |