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