Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [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 14:58:22 | [diff] [blame] | 9 | import("../webrtc.gni") |
Qiang Chen | 43fb912 | 2017-12-20 18:47:36 | [diff] [blame] | 10 | |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 11 | if (is_android) { |
| 12 | import("//build/config/android/config.gni") |
| 13 | import("//build/config/android/rules.gni") |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [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 12:55:00 | [diff] [blame] | 18 | } |
| 19 | |
| 20 | group("examples") { |
kjellander | 6ceab08 | 2016-10-28 12:44:03 | [diff] [blame] | 21 | # This target shall build all targets in examples. |
| 22 | testonly = true |
Mirko Bonadei | 1a339c3 | 2017-12-14 12:06:10 | [diff] [blame] | 23 | deps = [] |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 24 | |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 25 | if (is_android) { |
Mirko Bonadei | 1a339c3 | 2017-12-14 12:06:10 | [diff] [blame] | 26 | deps += [ |
kjellander | 6ceab08 | 2016-10-28 12:44:03 | [diff] [blame] | 27 | ":AppRTCMobile", |
| 28 | ":AppRTCMobileTest", |
mandermo | a6069e8 | 2017-01-16 10:23:09 | [diff] [blame] | 29 | ":AppRTCMobileTestStubbedVideoIO", |
kjellander | 6ceab08 | 2016-10-28 12:44:03 | [diff] [blame] | 30 | ] |
| 31 | } |
| 32 | |
charujain | aca3a24 | 2016-11-01 10:09:15 | [diff] [blame] | 33 | if (!build_with_chromium) { |
Mirko Bonadei | 1a339c3 | 2017-12-14 12:06:10 | [diff] [blame] | 34 | deps += [ ":stun_prober" ] |
charujain | aca3a24 | 2016-11-01 10:09:15 | [diff] [blame] | 35 | } |
| 36 | |
kjellander | 6ceab08 | 2016-10-28 12:44:03 | [diff] [blame] | 37 | if (is_ios || (is_mac && target_cpu != "x86")) { |
Mirko Bonadei | 1a339c3 | 2017-12-14 12:06:10 | [diff] [blame] | 38 | deps += [ ":AppRTCMobile" ] |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 39 | } |
kjellander | 6ceab08 | 2016-10-28 12:44:03 | [diff] [blame] | 40 | |
| 41 | if (is_linux || is_win) { |
Mirko Bonadei | 1a339c3 | 2017-12-14 12:06:10 | [diff] [blame] | 42 | deps += [ |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 43 | ":peerconnection_client", |
| 44 | ":peerconnection_server", |
| 45 | ":relayserver", |
| 46 | ":stunserver", |
| 47 | ":turnserver", |
| 48 | ] |
| 49 | } |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 50 | } |
| 51 | |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 52 | if (is_android) { |
Mirko Bonadei | fbb3b7d | 2017-11-07 15:36:33 | [diff] [blame] | 53 | rtc_android_apk("AppRTCMobile") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 54 | testonly = true |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 55 | apk_name = "AppRTCMobile" |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 56 | android_manifest = "androidapp/AndroidManifest.xml" |
| 57 | |
| 58 | deps = [ |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 59 | ":AppRTCMobile_javalib", |
| 60 | ":AppRTCMobile_resources", |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 61 | "../rtc_base:base_java", |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 62 | "//base:base_java", |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 63 | ] |
| 64 | |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 65 | shared_libraries = [ "../sdk/android:libjingle_peerconnection_so" ] |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 66 | } |
| 67 | |
Mirko Bonadei | fbb3b7d | 2017-11-07 15:36:33 | [diff] [blame] | 68 | rtc_android_library("AppRTCMobile_javalib") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 69 | testonly = true |
Mirko Bonadei | 4f024ef | 2018-01-04 12:12:03 | [diff] [blame] | 70 | android_manifest_for_lint = "androidapp/AndroidManifest.xml" |
sakal | 07a050f | 2017-02-13 13:58:27 | [diff] [blame] | 71 | |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 72 | java_files = [ |
| 73 | "androidapp/src/org/appspot/apprtc/AppRTCAudioManager.java", |
henrika | c3c2f31 | 2016-12-14 15:36:56 | [diff] [blame] | 74 | "androidapp/src/org/appspot/apprtc/AppRTCBluetoothManager.java", |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 75 | "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 Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 85 | "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 Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 94 | ] |
| 95 | |
| 96 | deps = [ |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 97 | ":AppRTCMobile_resources", |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 98 | "../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 Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 103 | ] |
| 104 | } |
| 105 | |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 106 | android_resources("AppRTCMobile_resources") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 107 | testonly = true |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 108 | resource_dirs = [ "androidapp/res" ] |
| 109 | custom_package = "org.appspot.apprtc" |
| 110 | } |
| 111 | |
Mirko Bonadei | fbb3b7d | 2017-11-07 15:36:33 | [diff] [blame] | 112 | rtc_instrumentation_test_apk("AppRTCMobileTest") { |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 113 | apk_name = "AppRTCMobileTest" |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 114 | android_manifest = "androidtests/AndroidManifest.xml" |
| 115 | |
Patrik Höglund | a8005cf | 2017-12-13 15:05:42 | [diff] [blame] | 116 | java_files = [ |
| 117 | "androidtests/src/org/appspot/apprtc/test/PeerConnectionClientTest.java", |
| 118 | ] |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 119 | |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 120 | apk_under_test = ":AppRTCMobile" |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 121 | |
| 122 | deps = [ |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 123 | ":AppRTCMobile_javalib", |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 124 | "../sdk/android:libjingle_peerconnection_java", |
sakal | cb79d51 | 2017-01-11 14:21:26 | [diff] [blame] | 125 | "//third_party/android_support_test_runner:runner_java", |
| 126 | "//third_party/junit", |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 127 | ] |
| 128 | } |
mandermo | a6069e8 | 2017-01-16 10:23:09 | [diff] [blame] | 129 | |
Mirko Bonadei | fbb3b7d | 2017-11-07 15:36:33 | [diff] [blame] | 130 | rtc_instrumentation_test_apk("AppRTCMobileTestStubbedVideoIO") { |
mandermo | a6069e8 | 2017-01-16 10:23:09 | [diff] [blame] | 131 | apk_name = "AppRTCMobileTestStubbedVideoIO" |
| 132 | android_manifest = "androidtests/AndroidManifest.xml" |
| 133 | |
oprypin | 30cda5e | 2017-04-24 11:15:13 | [diff] [blame] | 134 | java_files = [ "androidtests/src/org/appspot/apprtc/test/CallActivityStubbedInputOutputTest.java" ] |
mandermo | a6069e8 | 2017-01-16 10:23:09 | [diff] [blame] | 135 | |
| 136 | apk_under_test = ":AppRTCMobile" |
| 137 | |
| 138 | deps = [ |
| 139 | ":AppRTCMobile_javalib", |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 140 | "../sdk/android:libjingle_peerconnection_java", |
mandermo | a6069e8 | 2017-01-16 10:23:09 | [diff] [blame] | 141 | "//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", |
mandermo | a6069e8 | 2017-01-16 10:23:09 | [diff] [blame] | 146 | ] |
| 147 | |
| 148 | data = [ |
Mirko Bonadei | 92ea95e | 2017-09-15 04:47:31 | [diff] [blame] | 149 | "../resources/reference_video_640x360_30fps.y4m", |
mandermo | a6069e8 | 2017-01-16 10:23:09 | [diff] [blame] | 150 | ] |
| 151 | } |
Sami Kalliomaki | 9c0c75b | 2016-06-29 12:55:00 | [diff] [blame] | 152 | } |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 153 | |
| 154 | if (is_ios || (is_mac && target_cpu != "x86")) { |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 155 | config("apprtc_common_config") { |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 156 | include_dirs = [ "objc/AppRTCMobile/common" ] |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 157 | } |
| 158 | |
kjellander | b62dbbe | 2016-09-23 07:38:52 | [diff] [blame] | 159 | rtc_static_library("apprtc_common") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 160 | testonly = true |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 161 | sources = [ |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 162 | "objc/AppRTCMobile/common/ARDUtilities.h", |
| 163 | "objc/AppRTCMobile/common/ARDUtilities.m", |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 164 | ] |
ehmaldonado | e9cc686 | 2016-09-05 13:10:18 | [diff] [blame] | 165 | public_configs = [ ":apprtc_common_config" ] |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 166 | |
Kári Tristan Helgason | 946923a | 2017-06-02 12:05:56 | [diff] [blame] | 167 | if (is_ios) { |
kthelgason | 5901d9d | 2017-08-16 14:28:03 | [diff] [blame] | 168 | deps = [ |
| 169 | ":AppRTCMobile_ios_frameworks", |
Mirko Bonadei | 1a339c3 | 2017-12-14 12:06:10 | [diff] [blame] | 170 | "../sdk:common_objc", |
| 171 | "../system_wrappers:field_trial_default", |
kthelgason | 5901d9d | 2017-08-16 14:28:03 | [diff] [blame] | 172 | ] |
Kári Tristan Helgason | 946923a | 2017-06-02 12:05:56 | [diff] [blame] | 173 | } else { |
kthelgason | 5901d9d | 2017-08-16 14:28:03 | [diff] [blame] | 174 | deps = [ |
kthelgason | 36d658d | 2017-08-24 12:43:45 | [diff] [blame] | 175 | "../sdk:common_objc", |
kthelgason | 5901d9d | 2017-08-16 14:28:03 | [diff] [blame] | 176 | "../system_wrappers:field_trial_default", |
| 177 | "../system_wrappers:metrics_default", |
| 178 | ] |
Kári Tristan Helgason | 946923a | 2017-06-02 12:05:56 | [diff] [blame] | 179 | } |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 180 | } |
| 181 | |
| 182 | config("apprtc_signaling_config") { |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 183 | include_dirs = [ "objc/AppRTCMobile" ] |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 184 | |
| 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 | ] |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 192 | } |
| 193 | |
kjellander | b62dbbe | 2016-09-23 07:38:52 | [diff] [blame] | 194 | rtc_static_library("apprtc_signaling") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 195 | testonly = true |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 196 | sources = [ |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 197 | "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", |
sakal | c522e75 | 2017-04-05 19:17:48 | [diff] [blame] | 204 | "objc/AppRTCMobile/ARDCaptureController.h", |
| 205 | "objc/AppRTCMobile/ARDCaptureController.m", |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 206 | "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", |
sakal | c4adacf | 2017-03-28 08:22:48 | [diff] [blame] | 213 | "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 Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 218 | "objc/AppRTCMobile/ARDSignalingChannel.h", |
| 219 | "objc/AppRTCMobile/ARDSignalingMessage.h", |
| 220 | "objc/AppRTCMobile/ARDSignalingMessage.m", |
| 221 | "objc/AppRTCMobile/ARDStatsBuilder.h", |
| 222 | "objc/AppRTCMobile/ARDStatsBuilder.m", |
kthelgason | cc882af | 2017-01-13 13:59:46 | [diff] [blame] | 223 | "objc/AppRTCMobile/ARDTURNClient+Internal.h", |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 224 | "objc/AppRTCMobile/ARDTURNClient.h", |
kthelgason | cc882af | 2017-01-13 13:59:46 | [diff] [blame] | 225 | "objc/AppRTCMobile/ARDTURNClient.m", |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 226 | "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", |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 236 | ] |
ehmaldonado | e9cc686 | 2016-09-05 13:10:18 | [diff] [blame] | 237 | public_configs = [ ":apprtc_signaling_config" ] |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 238 | deps = [ |
| 239 | ":apprtc_common", |
| 240 | ":socketrocket", |
| 241 | ] |
Kári Tristan Helgason | 946923a | 2017-06-02 12:05:56 | [diff] [blame] | 242 | if (is_ios) { |
Mirko Bonadei | 1a339c3 | 2017-12-14 12:06:10 | [diff] [blame] | 243 | deps += [ |
| 244 | ":AppRTCMobile_ios_frameworks", |
| 245 | "../sdk:framework_objc", |
Kári Tristan Helgason | 946923a | 2017-06-02 12:05:56 | [diff] [blame] | 246 | ] |
Mirko Bonadei | 1a339c3 | 2017-12-14 12:06:10 | [diff] [blame] | 247 | } else { |
| 248 | deps += [ "../sdk:peerconnection_objc" ] |
Kári Tristan Helgason | 946923a | 2017-06-02 12:05:56 | [diff] [blame] | 249 | } |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 250 | libs = [ "QuartzCore.framework" ] |
| 251 | } |
| 252 | |
| 253 | if (is_ios) { |
denicija | 77bfd7c | 2016-11-15 08:41:26 | [diff] [blame] | 254 | rtc_static_library("AppRTCMobile_lib") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 255 | testonly = true |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 256 | sources = [ |
Patrik Höglund | 49acb1e | 2018-01-02 13:41:54 | [diff] [blame] | 257 | "objc/AppRTCMobile/ios/ARDAppDelegate.h", |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 258 | "objc/AppRTCMobile/ios/ARDAppDelegate.m", |
Daniela | 012b56b | 2017-11-15 12:15:24 | [diff] [blame] | 259 | "objc/AppRTCMobile/ios/ARDFileCaptureController.h", |
| 260 | "objc/AppRTCMobile/ios/ARDFileCaptureController.m", |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 261 | "objc/AppRTCMobile/ios/ARDMainView.h", |
| 262 | "objc/AppRTCMobile/ios/ARDMainView.m", |
| 263 | "objc/AppRTCMobile/ios/ARDMainViewController.h", |
| 264 | "objc/AppRTCMobile/ios/ARDMainViewController.m", |
denicija | d17d536 | 2016-11-02 09:56:09 | [diff] [blame] | 265 | "objc/AppRTCMobile/ios/ARDSettingsViewController.h", |
| 266 | "objc/AppRTCMobile/ios/ARDSettingsViewController.m", |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 267 | "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 Carlsson | 6bf43d2 | 2017-10-16 11:51:43 | [diff] [blame] | 273 | "objc/AppRTCMobile/ios/RTCVideoCodecInfo+HumanReadable.h", |
| 274 | "objc/AppRTCMobile/ios/RTCVideoCodecInfo+HumanReadable.m", |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 275 | "objc/AppRTCMobile/ios/UIImage+ARDUtilities.h", |
| 276 | "objc/AppRTCMobile/ios/UIImage+ARDUtilities.m", |
denicija | 77bfd7c | 2016-11-15 08:41:26 | [diff] [blame] | 277 | ] |
denicija | 77bfd7c | 2016-11-15 08:41:26 | [diff] [blame] | 278 | |
| 279 | deps = [ |
Kári Tristan Helgason | 946923a | 2017-06-02 12:05:56 | [diff] [blame] | 280 | ":AppRTCMobile_ios_frameworks", |
denicija | 77bfd7c | 2016-11-15 08:41:26 | [diff] [blame] | 281 | ":apprtc_common", |
| 282 | ":apprtc_signaling", |
Mirko Bonadei | 1a339c3 | 2017-12-14 12:06:10 | [diff] [blame] | 283 | "../sdk:framework_objc", |
denicija | 77bfd7c | 2016-11-15 08:41:26 | [diff] [blame] | 284 | ] |
| 285 | } |
| 286 | |
| 287 | ios_app_bundle("AppRTCMobile") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 288 | testonly = true |
denicija | 77bfd7c | 2016-11-15 08:41:26 | [diff] [blame] | 289 | sources = [ |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 290 | "objc/AppRTCMobile/ios/main.m", |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 291 | ] |
| 292 | |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 293 | info_plist = "objc/AppRTCMobile/ios/Info.plist" |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 294 | |
denicija | 77bfd7c | 2016-11-15 08:41:26 | [diff] [blame] | 295 | configs += [ "..:common_config" ] |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 296 | public_configs = [ "..:common_inherited_config" ] |
| 297 | |
| 298 | deps = [ |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 299 | ":AppRTCMobile_ios_bundle_data", |
kthelgason | d3adbfb | 2017-01-26 09:14:04 | [diff] [blame] | 300 | ":AppRTCMobile_ios_frameworks", |
denicija | 77bfd7c | 2016-11-15 08:41:26 | [diff] [blame] | 301 | ":AppRTCMobile_lib", |
Mirko Bonadei | 1a339c3 | 2017-12-14 12:06:10 | [diff] [blame] | 302 | "../sdk:framework_objc", |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 303 | ] |
| 304 | |
| 305 | if (target_cpu == "x86") { |
| 306 | deps += [ "//testing/iossim:iossim" ] |
| 307 | } |
| 308 | } |
| 309 | |
kthelgason | d3adbfb | 2017-01-26 09:14:04 | [diff] [blame] | 310 | bundle_data("AppRTCMobile_ios_frameworks") { |
Mirko Bonadei | 1a339c3 | 2017-12-14 12:06:10 | [diff] [blame] | 311 | deps = [ |
kthelgason | 36d658d | 2017-08-24 12:43:45 | [diff] [blame] | 312 | "../sdk:framework_objc+link", |
kthelgason | d3adbfb | 2017-01-26 09:14:04 | [diff] [blame] | 313 | ] |
| 314 | sources = [ |
wjywbs | bef8a5d | 2017-10-09 06:32:28 | [diff] [blame] | 315 | "$root_build_dir/WebRTC.framework", |
kthelgason | d3adbfb | 2017-01-26 09:14:04 | [diff] [blame] | 316 | ] |
| 317 | outputs = [ |
| 318 | "{{bundle_resources_dir}}/Frameworks/{{source_file_part}}", |
| 319 | ] |
| 320 | } |
| 321 | |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 322 | bundle_data("AppRTCMobile_ios_bundle_data") { |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 323 | sources = [ |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 324 | "objc/AppRTCMobile/ios/resources/Roboto-Regular.ttf", |
Daniela | 012b56b | 2017-11-15 12:15:24 | [diff] [blame] | 325 | |
| 326 | # Sample video taken from https://media.xiph.org/video/derf/ |
| 327 | "objc/AppRTCMobile/ios/resources/foreman.mp4", |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 328 | "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", |
denicija | 6d6762c | 2016-10-28 11:53:16 | [diff] [blame] | 335 | "objc/AppRTCMobile/ios/resources/ic_settings_black_24dp.png", |
| 336 | "objc/AppRTCMobile/ios/resources/ic_settings_black_24dp@2x.png", |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 337 | "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", |
andersc | b5ed905 | 2017-08-15 11:07:12 | [diff] [blame] | 342 | "objc/Icon-120.png", |
| 343 | "objc/Icon-180.png", |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 344 | "objc/Icon.png", |
| 345 | ] |
| 346 | outputs = [ |
| 347 | "{{bundle_resources_dir}}/{{source_file_part}}", |
| 348 | ] |
| 349 | } |
| 350 | } |
| 351 | |
| 352 | if (is_mac) { |
denicija | 77bfd7c | 2016-11-15 08:41:26 | [diff] [blame] | 353 | rtc_static_library("AppRTCMobile_lib") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 354 | testonly = true |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 355 | sources = [ |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 356 | "objc/AppRTCMobile/mac/APPRTCAppDelegate.h", |
| 357 | "objc/AppRTCMobile/mac/APPRTCAppDelegate.m", |
| 358 | "objc/AppRTCMobile/mac/APPRTCViewController.h", |
| 359 | "objc/AppRTCMobile/mac/APPRTCViewController.m", |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 360 | ] |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 361 | configs += [ "..:common_objc" ] |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 362 | deps = [ |
| 363 | ":apprtc_common", |
| 364 | ":apprtc_signaling", |
Mirko Bonadei | 1a339c3 | 2017-12-14 12:06:10 | [diff] [blame] | 365 | "../sdk:metal_objc", |
kthelgason | 36d658d | 2017-08-24 12:43:45 | [diff] [blame] | 366 | "../sdk:ui_objc", |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 367 | ] |
| 368 | } |
| 369 | |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 370 | mac_app_bundle("AppRTCMobile") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 371 | testonly = true |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 372 | output_name = "AppRTCMobile" |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 373 | |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 374 | sources = [ |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 375 | "objc/AppRTCMobile/mac/main.m", |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 376 | ] |
| 377 | |
| 378 | public_configs = [ "..:common_inherited_config" ] |
| 379 | |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 380 | info_plist = "objc/AppRTCMobile/mac/Info.plist" |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 381 | |
| 382 | libs = [ "AppKit.framework" ] |
| 383 | |
| 384 | deps = [ |
denicija | 77bfd7c | 2016-11-15 08:41:26 | [diff] [blame] | 385 | ":AppRTCMobile_lib", |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 386 | ] |
| 387 | } |
| 388 | } |
| 389 | |
| 390 | config("socketrocket_include_config") { |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 391 | include_dirs = [ "objc/AppRTCMobile/third_party/SocketRocket" ] |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 392 | } |
| 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", |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 401 | "-Wno-semicolon-before-method-body", |
kthelgason | e47de1a | 2017-02-24 09:56:01 | [diff] [blame] | 402 | "-Wno-unused-variable", |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 403 | ] |
| 404 | |
henrika | 27d8b61 | 2016-09-21 11:13:00 | [diff] [blame] | 405 | cflags_objc = [ |
| 406 | # Enabled for cflags_objc in build/config/compiler/BUILD.gn. |
| 407 | "-Wno-objc-missing-property-synthesis", |
henrika | 27d8b61 | 2016-09-21 11:13:00 | [diff] [blame] | 408 | ] |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 409 | } |
| 410 | |
kjellander | b62dbbe | 2016-09-23 07:38:52 | [diff] [blame] | 411 | rtc_static_library("socketrocket") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 412 | testonly = true |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 413 | sources = [ |
Magnus Jedvert | c1815cf | 2016-09-27 08:10:41 | [diff] [blame] | 414 | "objc/AppRTCMobile/third_party/SocketRocket/SRWebSocket.h", |
| 415 | "objc/AppRTCMobile/third_party/SocketRocket/SRWebSocket.m", |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 416 | ] |
kthelgason | c097710 | 2017-04-24 07:57:16 | [diff] [blame] | 417 | configs += [ ":socketrocket_warning_config" ] |
ehmaldonado | e9cc686 | 2016-09-05 13:10:18 | [diff] [blame] | 418 | public_configs = [ ":socketrocket_include_config" ] |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 419 | |
| 420 | libs = [ |
| 421 | "CFNetwork.framework", |
| 422 | "icucore", |
| 423 | ] |
| 424 | } |
adam.fedor | bcc5d87 | 2016-11-07 22:53:28 | [diff] [blame] | 425 | |
| 426 | if (rtc_include_tests) { |
kthelgason | 4065a576 | 2017-02-14 12:58:56 | [diff] [blame] | 427 | # TODO(kthelgason): compile xctests on mac when chromium supports it. |
| 428 | if (is_ios) { |
| 429 | rtc_source_set("apprtcmobile_test_sources") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 430 | testonly = true |
kthelgason | 4065a576 | 2017-02-14 12:58:56 | [diff] [blame] | 431 | include_dirs = [ |
| 432 | "objc/AppRTCMobile", |
| 433 | "objc/AppRTCMobile/ios", |
| 434 | ] |
| 435 | testonly = true |
| 436 | sources = [ |
| 437 | "objc/AppRTCMobile/tests/ARDAppClient_xctest.mm", |
Daniela | 012b56b | 2017-11-15 12:15:24 | [diff] [blame] | 438 | "objc/AppRTCMobile/tests/ARDFileCaptureController_xctest.mm", |
kthelgason | 4065a576 | 2017-02-14 12:58:56 | [diff] [blame] | 439 | "objc/AppRTCMobile/tests/ARDSettingsModel_xctest.mm", |
| 440 | ] |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 441 | deps = [ |
kthelgason | 4065a576 | 2017-02-14 12:58:56 | [diff] [blame] | 442 | ":AppRTCMobile_ios_frameworks", |
| 443 | ":AppRTCMobile_lib", |
Mirko Bonadei | 1a339c3 | 2017-12-14 12:06:10 | [diff] [blame] | 444 | "../rtc_base:rtc_base", |
| 445 | "../sdk:framework_objc", |
kthelgason | 4065a576 | 2017-02-14 12:58:56 | [diff] [blame] | 446 | "//build/config/ios:xctest", |
| 447 | "//third_party/ocmock", |
| 448 | ] |
adam.fedor | bcc5d87 | 2016-11-07 22:53:28 | [diff] [blame] | 449 | } |
| 450 | |
kthelgason | 4065a576 | 2017-02-14 12:58:56 | [diff] [blame] | 451 | 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 Bonadei | 1a339c3 | 2017-12-14 12:06:10 | [diff] [blame] | 458 | "../sdk:framework_objc", |
kthelgason | 4065a576 | 2017-02-14 12:58:56 | [diff] [blame] | 459 | ] |
| 460 | ldflags = [ "-all_load" ] |
| 461 | } |
adam.fedor | bcc5d87 | 2016-11-07 22:53:28 | [diff] [blame] | 462 | } |
| 463 | } |
tkchin | 2ddfdba | 2016-08-08 04:37:45 | [diff] [blame] | 464 | } |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 465 | |
| 466 | if (is_linux || is_win) { |
ehmaldonado | d02fe4b | 2016-08-26 20:31:24 | [diff] [blame] | 467 | config("peerconnection_client_warnings_config") { |
kjellander | 4a9abad | 2016-09-18 15:12:29 | [diff] [blame] | 468 | cflags = [] |
ehmaldonado | d02fe4b | 2016-08-26 20:31:24 | [diff] [blame] | 469 | if (is_win && is_clang) { |
kjellander | 4a9abad | 2016-09-18 15:12:29 | [diff] [blame] | 470 | cflags += [ |
ehmaldonado | d02fe4b | 2016-08-26 20:31:24 | [diff] [blame] | 471 | # 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 | } |
kjellander | d4626e5 | 2016-09-07 09:33:01 | [diff] [blame] | 481 | if (is_linux && target_cpu == "x86") { |
kjellander | 4a9abad | 2016-09-18 15:12:29 | [diff] [blame] | 482 | cflags += [ |
kjellander | d4626e5 | 2016-09-07 09:33:01 | [diff] [blame] | 483 | # Needed to compile on Linux 32-bit. |
| 484 | "-Wno-sentinel", |
| 485 | ] |
| 486 | } |
kjellander | 4a9abad | 2016-09-18 15:12:29 | [diff] [blame] | 487 | |
| 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 | } |
ehmaldonado | d02fe4b | 2016-08-26 20:31:24 | [diff] [blame] | 494 | } |
| 495 | |
ehmaldonado | 38a2132 | 2016-09-02 11:10:34 | [diff] [blame] | 496 | rtc_executable("peerconnection_client") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 497 | testonly = true |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 498 | 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 | ] |
ehmaldonado | 7a2ce0b | 2016-09-05 08:35:44 | [diff] [blame] | 506 | |
kjellander | e40a7ee | 2016-10-17 06:56:12 | [diff] [blame] | 507 | if (!build_with_chromium && is_clang) { |
| 508 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
ehmaldonado | 38a2132 | 2016-09-02 11:10:34 | [diff] [blame] | 509 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 510 | } |
Patrik Höglund | b5b5bce | 2017-11-13 09:19:58 | [diff] [blame] | 511 | deps = [ |
| 512 | "../api:video_frame_api_i420", |
Patrik Höglund | a8005cf | 2017-12-13 15:05:42 | [diff] [blame] | 513 | "../rtc_base:checks", |
Patrik Höglund | 3e11343 | 2017-12-15 13:40:10 | [diff] [blame] | 514 | "../rtc_base:stringutils", |
Patrik Höglund | b5b5bce | 2017-11-13 09:19:58 | [diff] [blame] | 515 | ] |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 516 | 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.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 525 | deps += [ "../media:rtc_media_base" ] |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 526 | } |
| 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 Kjellander | efbde2c | 2017-03-27 06:28:27 | [diff] [blame] | 533 | cflags = [ "-Wno-deprecated-declarations" ] |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 534 | libs = [ |
| 535 | "X11", |
| 536 | "Xcomposite", |
| 537 | "Xext", |
| 538 | "Xrender", |
| 539 | ] |
thomasanderson | ef16e99 | 2016-12-13 10:57:43 | [diff] [blame] | 540 | deps += [ "//build/config/linux/gtk" ] |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 541 | } |
ehmaldonado | d02fe4b | 2016-08-26 20:31:24 | [diff] [blame] | 542 | configs += [ ":peerconnection_client_warnings_config" ] |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 543 | |
| 544 | deps += [ |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 545 | "../api:libjingle_peerconnection_test_api", |
| 546 | "../api:video_frame_api", |
Karl Wiberg | 1b0eae3 | 2017-10-17 12:48:54 | [diff] [blame] | 547 | "../api/audio_codecs:builtin_audio_decoder_factory", |
| 548 | "../api/audio_codecs:builtin_audio_encoder_factory", |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 549 | "../media:rtc_media", |
| 550 | "../modules/video_capture:video_capture_module", |
| 551 | "../pc:libjingle_peerconnection", |
ehmaldonado | f6a861a | 2017-07-19 17:40:47 | [diff] [blame] | 552 | "../rtc_base:rtc_base", |
| 553 | "../rtc_base:rtc_base_approved", |
| 554 | "../rtc_base:rtc_json", |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 555 | "../system_wrappers:field_trial_default", |
| 556 | "../system_wrappers:metrics_default", |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 557 | "//third_party/libyuv", |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 558 | ] |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 559 | } |
kjellander | d4626e5 | 2016-09-07 09:33:01 | [diff] [blame] | 560 | |
ehmaldonado | 38a2132 | 2016-09-02 11:10:34 | [diff] [blame] | 561 | rtc_executable("peerconnection_server") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 562 | testonly = true |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 563 | 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.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 573 | "..:webrtc_common", |
ehmaldonado | f6a861a | 2017-07-19 17:40:47 | [diff] [blame] | 574 | "../rtc_base:rtc_base_approved", |
Patrik Höglund | 3e11343 | 2017-12-15 13:40:10 | [diff] [blame] | 575 | "../rtc_base:stringutils", |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 576 | "../rtc_tools:command_line_parser", |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 577 | ] |
kjellander | e40a7ee | 2016-10-17 06:56:12 | [diff] [blame] | 578 | if (!build_with_chromium && is_clang) { |
| 579 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
ehmaldonado | 38a2132 | 2016-09-02 11:10:34 | [diff] [blame] | 580 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 581 | } |
| 582 | } |
ehmaldonado | 38a2132 | 2016-09-02 11:10:34 | [diff] [blame] | 583 | rtc_executable("relayserver") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 584 | testonly = true |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 585 | sources = [ |
| 586 | "relayserver/relayserver_main.cc", |
| 587 | ] |
| 588 | deps = [ |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 589 | "../p2p:rtc_p2p", |
| 590 | "../pc:rtc_pc", |
ehmaldonado | f6a861a | 2017-07-19 17:40:47 | [diff] [blame] | 591 | "../rtc_base:rtc_base", |
| 592 | "../rtc_base:rtc_base_approved", |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 593 | "../system_wrappers:field_trial_default", |
| 594 | "../system_wrappers:metrics_default", |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 595 | ] |
kjellander | e40a7ee | 2016-10-17 06:56:12 | [diff] [blame] | 596 | if (!build_with_chromium && is_clang) { |
| 597 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
ehmaldonado | 38a2132 | 2016-09-02 11:10:34 | [diff] [blame] | 598 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 599 | } |
| 600 | } |
ehmaldonado | 38a2132 | 2016-09-02 11:10:34 | [diff] [blame] | 601 | rtc_executable("turnserver") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 602 | testonly = true |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 603 | sources = [ |
| 604 | "turnserver/turnserver_main.cc", |
| 605 | ] |
| 606 | deps = [ |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 607 | "../p2p:rtc_p2p", |
| 608 | "../pc:rtc_pc", |
ehmaldonado | f6a861a | 2017-07-19 17:40:47 | [diff] [blame] | 609 | "../rtc_base:rtc_base", |
| 610 | "../rtc_base:rtc_base_approved", |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 611 | "../system_wrappers:field_trial_default", |
| 612 | "../system_wrappers:metrics_default", |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 613 | ] |
kjellander | e40a7ee | 2016-10-17 06:56:12 | [diff] [blame] | 614 | if (!build_with_chromium && is_clang) { |
| 615 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
ehmaldonado | 38a2132 | 2016-09-02 11:10:34 | [diff] [blame] | 616 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 617 | } |
| 618 | } |
ehmaldonado | 38a2132 | 2016-09-02 11:10:34 | [diff] [blame] | 619 | rtc_executable("stunserver") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 620 | testonly = true |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 621 | sources = [ |
| 622 | "stunserver/stunserver_main.cc", |
| 623 | ] |
| 624 | deps = [ |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 625 | "../p2p:rtc_p2p", |
| 626 | "../pc:rtc_pc", |
ehmaldonado | f6a861a | 2017-07-19 17:40:47 | [diff] [blame] | 627 | "../rtc_base:rtc_base", |
| 628 | "../rtc_base:rtc_base_approved", |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 629 | "../system_wrappers:field_trial_default", |
| 630 | "../system_wrappers:metrics_default", |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 631 | ] |
kjellander | e40a7ee | 2016-10-17 06:56:12 | [diff] [blame] | 632 | if (!build_with_chromium && is_clang) { |
| 633 | # Suppress warnings from the Chromium Clang plugin (bugs.webrtc.org/163). |
ehmaldonado | 38a2132 | 2016-09-02 11:10:34 | [diff] [blame] | 634 | suppressed_configs += [ "//build/config/clang:find_bad_constructs" ] |
kthelgason | 0727f15 | 2016-08-08 16:03:23 | [diff] [blame] | 635 | } |
| 636 | } |
| 637 | } |
charujain | aca3a24 | 2016-11-01 10:09:15 | [diff] [blame] | 638 | |
qiangchen | 42f96d5 | 2017-08-09 00:08:03 | [diff] [blame] | 639 | if (is_win || is_android) { |
gyzhou | ad7cad8 | 2017-05-11 23:10:03 | [diff] [blame] | 640 | 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", |
gyzhou | b38f386 | 2017-07-25 23:04:31 | [diff] [blame] | 647 | "unityplugin/video_observer.cc", |
| 648 | "unityplugin/video_observer.h", |
gyzhou | ad7cad8 | 2017-05-11 23:10:03 | [diff] [blame] | 649 | ] |
qiangchen | 42f96d5 | 2017-08-09 00:08:03 | [diff] [blame] | 650 | |
| 651 | if (is_android) { |
| 652 | sources += [ |
| 653 | "unityplugin/classreferenceholder.cc", |
| 654 | "unityplugin/classreferenceholder.h", |
| 655 | "unityplugin/jni_onload.cc", |
| 656 | ] |
Qiang Chen | 43fb912 | 2017-12-20 18:47:36 | [diff] [blame] | 657 | suppressed_configs += [ "//build/config/android:hide_all_but_jni_onload" ] |
qiangchen | 42f96d5 | 2017-08-09 00:08:03 | [diff] [blame] | 658 | } |
| 659 | |
gyzhou | ad7cad8 | 2017-05-11 23:10:03 | [diff] [blame] | 660 | 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 | } |
qiangchen | 42f96d5 | 2017-08-09 00:08:03 | [diff] [blame] | 664 | if (is_win) { |
| 665 | cflags = [ "/wd4245" ] |
| 666 | configs += [ |
| 667 | "//build/config/win:windowed", |
| 668 | ":peerconnection_client_warnings_config", |
| 669 | ] |
| 670 | } |
gyzhou | ad7cad8 | 2017-05-11 23:10:03 | [diff] [blame] | 671 | deps = [ |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 672 | "../api:libjingle_peerconnection_test_api", |
| 673 | "../api:video_frame_api", |
Qiang Chen | 51e2046 | 2017-12-05 19:11:21 | [diff] [blame] | 674 | "../api/audio_codecs:builtin_audio_decoder_factory", |
| 675 | "../api/audio_codecs:builtin_audio_encoder_factory", |
Patrik Höglund | be214a2 | 2018-01-04 11:14:35 | [diff] [blame] | 676 | "../common_video", |
Anders Carlsson | a114c88 | 2018-01-04 14:10:22 | [diff] [blame^] | 677 | "../media:rtc_internal_video_codecs", |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 678 | "../media:rtc_media", |
| 679 | "../media:rtc_media_base", |
Qiang Chen | 43fb912 | 2017-12-20 18:47:36 | [diff] [blame] | 680 | "../modules/audio_device:audio_device", |
| 681 | "../modules/audio_processing:audio_processing", |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 682 | "../modules/video_capture:video_capture_module", |
| 683 | "../pc:libjingle_peerconnection", |
qiangchen | 42f96d5 | 2017-08-09 00:08:03 | [diff] [blame] | 684 | "../rtc_base:rtc_base", |
jianjun.zhu | c024740 | 2017-07-11 13:20:45 | [diff] [blame] | 685 | "../system_wrappers:field_trial_default", |
| 686 | "../system_wrappers:metrics_default", |
gyzhou | ad7cad8 | 2017-05-11 23:10:03 | [diff] [blame] | 687 | ] |
qiangchen | 42f96d5 | 2017-08-09 00:08:03 | [diff] [blame] | 688 | if (is_android) { |
| 689 | deps += [ "../sdk/android:libjingle_peerconnection_jni" ] |
| 690 | } |
| 691 | } |
| 692 | } |
| 693 | |
| 694 | if (is_android) { |
Mirko Bonadei | fbb3b7d | 2017-11-07 15:36:33 | [diff] [blame] | 695 | rtc_android_library("webrtc_unity_java") { |
qiangchen | 42f96d5 | 2017-08-09 00:08:03 | [diff] [blame] | 696 | 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 Prypin | 1e53f8a | 2017-12-21 21:06:21 | [diff] [blame] | 708 | use_unprocessed_jars = true |
Oleh Prypin | 86021d9 | 2017-09-24 20:29:06 | [diff] [blame] | 709 | requires_android = true |
qiangchen | 42f96d5 | 2017-08-09 00:08:03 | [diff] [blame] | 710 | 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 | ] |
gyzhou | ad7cad8 | 2017-05-11 23:10:03 | [diff] [blame] | 717 | } |
| 718 | } |
| 719 | |
charujain | aca3a24 | 2016-11-01 10:09:15 | [diff] [blame] | 720 | if (!build_with_chromium) { |
| 721 | # Doesn't build within Chrome on Win. |
| 722 | rtc_executable("stun_prober") { |
kjellander | 1993b1d | 2017-03-06 08:29:21 | [diff] [blame] | 723 | testonly = true |
charujain | aca3a24 | 2016-11-01 10:09:15 | [diff] [blame] | 724 | 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öglund | a8005cf | 2017-12-13 15:05:42 | [diff] [blame] | 737 | "../rtc_base:checks", |
ehmaldonado | f6a861a | 2017-07-19 17:40:47 | [diff] [blame] | 738 | "../rtc_base:rtc_base", |
| 739 | "../rtc_base:rtc_base_approved", |
Patrik Höglund | 3e11343 | 2017-12-15 13:40:10 | [diff] [blame] | 740 | "../rtc_base:stringutils", |
charujain | aca3a24 | 2016-11-01 10:09:15 | [diff] [blame] | 741 | "../system_wrappers:field_trial_default", |
| 742 | ] |
| 743 | } |
| 744 | } |