blob: 8040f628d9900f34a932c3cdbaeff1cb2fe120d8 [file] [log] [blame]
mbonadei9aa3f0a2017-01-24 14:58:221# Copyright (c) 2014 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.
mbonadei9aa3f0a2017-01-24 14:58:228import("//build/config/arm.gni")
9import("//build/config/features.gni")
10import("//build/config/mips.gni")
Maksim Sisovef4d0b62021-09-20 06:02:0111import("//build/config/ozone.gni")
mbonadei9aa3f0a2017-01-24 14:58:2212import("//build/config/sanitizers/sanitizers.gni")
Tomas Popela318da512018-11-13 05:32:2313import("//build/config/sysroot.gni")
mbonadei9aa3f0a2017-01-24 14:58:2214import("//build_overrides/build.gni")
mbonadei96606272017-03-04 03:41:5915
16if (!build_with_chromium && is_component_build) {
17 print("The Gn argument `is_component_build` is currently " +
18 "ignored for WebRTC builds.")
19 print("Component builds are supported by Chromium and the argument " +
20 "`is_component_build` makes it possible to create shared libraries " +
21 "instead of static libraries.")
22 print("If an app depends on WebRTC it makes sense to just depend on the " +
23 "WebRTC static library, so there is no difference between " +
24 "`is_component_build=true` and `is_component_build=false`.")
25 print(
Fanny Linderborg0d2dc1f2021-07-14 14:02:1126 "More info about component builds at: " + "https://chromium.googlesource.com/chromium/src/+/main/docs/component_build.md")
mbonadei96606272017-03-04 03:41:5927 assert(!is_component_build, "Component builds are not supported in WebRTC.")
28}
29
kthelgason4065a5762017-02-14 12:58:5630if (is_ios) {
31 import("//build/config/ios/rules.gni")
32}
mbonadei9aa3f0a2017-01-24 14:58:2233
Anders Carlsson37bbf792018-09-05 14:29:2734if (is_mac) {
35 import("//build/config/mac/rules.gni")
36}
37
Mirko Bonadei5f078452021-07-30 20:32:5538# This declare_args is separated from the next one because args declared
39# in this one, can be read from the next one (args defined in the same
40# declare_args cannot be referenced in that scope).
mbonadei9aa3f0a2017-01-24 14:58:2241declare_args() {
Mirko Bonadei028248c2018-10-10 10:19:0242 # Setting this to true will make RTC_EXPORT (see rtc_base/system/rtc_export.h)
43 # expand to code that will manage symbols visibility.
44 rtc_enable_symbol_export = false
Mirko Bonadei5f078452021-07-30 20:32:5545}
46
47declare_args() {
Mirko Bonadei339965f2021-10-12 11:23:4448 # Setting this to true, will make RTC_DLOG() expand to log statements instead
Mirko Bonadei56ed4682021-10-12 06:55:4249 # of being removed by the preprocessor.
50 # This is useful for example to be able to get RTC_DLOGs on a release build.
51 rtc_dlog_always_on = false
52
Mirko Bonadei5f078452021-07-30 20:32:5553 # Setting this to true will make RTC_OBJC_EXPORT expand to code that will
54 # manage symbols visibility. By default, Obj-C/Obj-C++ symbols are exported
55 # if C++ symbols are but setting this arg to true while keeping
56 # rtc_enable_symbol_export=false will only export RTC_OBJC_EXPORT
57 # annotated symbols.
58 rtc_enable_objc_symbol_export = rtc_enable_symbol_export
Mirko Bonadei028248c2018-10-10 10:19:0259
Mirko Bonadei31b0b452018-08-22 08:37:1160 # Setting this to true will define WEBRTC_EXCLUDE_FIELD_TRIAL_DEFAULT which
Mirko Bonadei70400902018-08-21 13:44:2861 # will tell the pre-processor to remove the default definition of symbols
62 # needed to use field_trial. In that case a new implementation needs to be
63 # provided.
Mirko Bonadei31b0b452018-08-22 08:37:1164 if (build_with_chromium) {
65 # When WebRTC is built as part of Chromium it should exclude the default
66 # implementation of field_trial unless it is building for NACL or
67 # Chromecast.
68 rtc_exclude_field_trial_default = !is_nacl && !is_chromecast
69 } else {
70 rtc_exclude_field_trial_default = false
71 }
Mirko Bonadei70400902018-08-21 13:44:2872
Mirko Bonadei906add42018-09-05 14:03:1673 # Setting this to true will define WEBRTC_EXCLUDE_METRICS_DEFAULT which
74 # will tell the pre-processor to remove the default definition of symbols
75 # needed to use metrics. In that case a new implementation needs to be
76 # provided.
77 rtc_exclude_metrics_default = build_with_chromium
78
Johannes Kronda20c732021-02-19 15:39:4179 # Setting this to true will define WEBRTC_EXCLUDE_SYSTEM_TIME which
80 # will tell the pre-processor to remove the default definition of the
81 # SystemTimeNanos() which is defined in rtc_base/system_time.cc. In
82 # that case a new implementation needs to be provided.
Johannes Kronbb52bdf2021-02-25 09:10:0883 rtc_exclude_system_time = build_with_chromium
Johannes Kronda20c732021-02-19 15:39:4184
Benjamin Wrightd6f86e82018-05-08 20:12:2585 # Setting this to false will require the API user to pass in their own
86 # SSLCertificateVerifier to verify the certificates presented from a
87 # TLS-TURN server. In return disabling this saves around 100kb in the binary.
88 rtc_builtin_ssl_root_certificates = true
89
Karl Wibergeb254b42017-11-01 14:08:1290 # Include the iLBC audio codec?
Olga Sharonova5fbd7582020-07-09 09:50:4291 rtc_include_ilbc = true
Karl Wibergeb254b42017-11-01 14:08:1292
mbonadei9aa3f0a2017-01-24 14:58:2293 # Disable this to avoid building the Opus audio codec.
94 rtc_include_opus = true
95
minyue2e03c662017-02-02 01:31:1196 # Enable this if the Opus version upon which WebRTC is built supports direct
97 # encoding of 120 ms packets.
minyue-webrtc516711c2017-07-27 15:45:4998 rtc_opus_support_120ms_ptime = true
minyue2e03c662017-02-02 01:31:1199
mbonadei9aa3f0a2017-01-24 14:58:22100 # Enable this to let the Opus audio codec change complexity on the fly.
101 rtc_opus_variable_complexity = false
102
mbonadei9aa3f0a2017-01-24 14:58:22103 # Used to specify an external Jsoncpp include path when not compiling the
104 # library that comes with WebRTC (i.e. rtc_build_json == 0).
105 rtc_jsoncpp_root = "//third_party/jsoncpp/source/include"
106
107 # Used to specify an external OpenSSL include path when not compiling the
108 # library that comes with WebRTC (i.e. rtc_build_ssl == 0).
109 rtc_ssl_root = ""
110
mbonadei9aa3f0a2017-01-24 14:58:22111 # Enable when an external authentication mechanism is used for performing
112 # packet authentication for RTP packets instead of libsrtp.
113 rtc_enable_external_auth = build_with_chromium
114
115 # Selects whether debug dumps for the audio processing module
116 # should be generated.
117 apm_debug_dump = false
118
Per Åhgrencc73ed32020-04-26 21:56:17119 # Selects whether the audio processing module should be excluded.
120 rtc_exclude_audio_processing_module = false
121
mbonadei9aa3f0a2017-01-24 14:58:22122 # Set this to true to enable BWE test logging.
123 rtc_enable_bwe_test_logging = false
124
Joachim Bauch93e91342017-12-07 00:25:53125 # Set this to false to skip building examples.
126 rtc_build_examples = true
127
128 # Set this to false to skip building tools.
129 rtc_build_tools = true
130
Joachim Bauch75f18fc2017-12-20 20:25:47131 # Set this to false to skip building code that requires X11.
Maksim Sisovef4d0b62021-09-20 06:02:01132 rtc_use_x11 = ozone_platform_x11
Joachim Bauch75f18fc2017-12-20 20:25:47133
Tomas Popela318da512018-11-13 05:32:23134 # Set this to use PipeWire on the Wayland display server.
Tomas Popela762543f2018-12-12 13:37:51135 # By default it's only enabled on desktop Linux (excludes ChromeOS) and
136 # only when using the sysroot as PipeWire is not available in older and
137 # supported Ubuntu and Debian distributions.
Artem Titov4d6a76d2021-09-03 10:07:20138 rtc_use_pipewire = is_linux && use_sysroot
Tomas Popela762543f2018-12-12 13:37:51139
Jan Gruliche1e05af2021-09-21 18:36:16140 # Set this to link PipeWire and required libraries directly instead of using the dlopen.
Tomas Popela762543f2018-12-12 13:37:51141 rtc_link_pipewire = false
Tomas Popela318da512018-11-13 05:32:23142
mbonadei9aa3f0a2017-01-24 14:58:22143 # Enable to use the Mozilla internal settings.
144 build_with_mozilla = false
145
Philipp Hanckee95ebda2020-09-17 14:13:20146 # Experimental: enable use of Android AAudio which requires Android SDK 26 or above
147 # and NDK r16 or above.
henrika883d00f2018-03-16 09:09:49148 rtc_enable_android_aaudio = false
149
mbonadei9aa3f0a2017-01-24 14:58:22150 # Set to "func", "block", "edge" for coverage generation.
151 # At unit test runtime set UBSAN_OPTIONS="coverage=1".
152 # It is recommend to set include_examples=0.
153 # Use llvm's sancov -html-report for human readable reports.
154 # See http://clang.llvm.org/docs/SanitizerCoverage.html .
155 rtc_sanitize_coverage = ""
156
Philipp Hanckeaeac9f82020-09-11 09:58:18157 # Selects fixed-point code where possible.
158 rtc_prefer_fixed_point = false
mbonadei9aa3f0a2017-01-24 14:58:22159 if (current_cpu == "arm" || current_cpu == "arm64") {
160 rtc_prefer_fixed_point = true
161 }
162
mbonadei9aa3f0a2017-01-24 14:58:22163 # Determines whether NEON code will be built.
164 rtc_build_with_neon =
165 (current_cpu == "arm" && arm_use_neon) || current_cpu == "arm64"
166
167 # Enable this to build OpenH264 encoder/FFmpeg decoder. This is supported on
168 # all platforms except Android and iOS. Because FFmpeg can be built
Artem Titov22a6b2d2021-07-27 14:25:56169 # with/without H.264 support, `ffmpeg_branding` has to separately be set to a
mbonadei9aa3f0a2017-01-24 14:58:22170 # value that includes H.264, for example "Chrome". If FFmpeg is built without
Artem Titov22a6b2d2021-07-27 14:25:56171 # H.264, compilation succeeds but `H264DecoderImpl` fails to initialize.
mbonadei9aa3f0a2017-01-24 14:58:22172 # CHECK THE OPENH264, FFMPEG AND H.264 LICENSES/PATENTS BEFORE BUILDING.
173 # http://www.openh264.org, https://www.ffmpeg.org/
Mirko Bonadeiee0a85c2019-01-15 09:47:18174 #
175 # Enabling H264 when building with MSVC is currently not supported, see
176 # bugs.webrtc.org/9213#c13 for more info.
177 rtc_use_h264 =
178 proprietary_codecs && !is_android && !is_ios && !(is_win && !is_clang)
mbonadei9aa3f0a2017-01-24 14:58:22179
Markus Handell8e75bd42020-06-05 09:47:40180 # Enable this flag to make webrtc::Mutex be implemented by absl::Mutex.
181 rtc_use_absl_mutex = false
182
mbonadei9aa3f0a2017-01-24 14:58:22183 # By default, use normal platform audio support or dummy audio, but don't
184 # use file-based audio playout and record.
185 rtc_use_dummy_audio_file_devices = false
186
henrika7be78832017-06-13 15:34:16187 # When set to true, replace the audio output with a sinus tone at 440Hz.
188 # The ADM will ask for audio data from WebRTC but instead of reading real
189 # audio samples from NetEQ, a sinus tone will be generated and replace the
190 # real audio samples.
191 rtc_audio_device_plays_sinus_tone = false
192
Anders Carlsson358f2e02018-06-04 08:24:37193 if (is_ios) {
194 # Build broadcast extension in AppRTCMobile for iOS. This results in the
195 # binary only running on iOS 11+, which is why it is disabled by default.
196 rtc_apprtcmobile_broadcast_extension = false
197 }
Anders Carlsson7bca8ca2018-08-30 07:30:29198
Jordan Rose53d3fc92021-07-06 19:16:41199 # Determines whether OpenGL is available on iOS/macOS.
200 rtc_ios_macos_use_opengl_rendering =
201 !(is_ios && target_environment == "catalyst")
202
Jiawei Ou08745302019-02-12 19:36:13203 # When set to false, builtin audio encoder/decoder factories and all the
204 # audio codecs they depend on will not be included in libwebrtc.{a|lib}
205 # (they will still be included in libjingle_peerconnection_so.so and
206 # WebRTC.framework)
207 rtc_include_builtin_audio_codecs = true
208
209 # When set to false, builtin video encoder/decoder factories and all the
210 # video codecs they depends on will not be included in libwebrtc.{a|lib}
211 # (they will still be included in libjingle_peerconnection_so.so and
212 # WebRTC.framework)
213 rtc_include_builtin_video_codecs = true
Mirko Bonadei20574f42019-03-28 06:50:07214
215 # When set to true and in a standalone build, it will undefine UNICODE and
216 # _UNICODE (which are always defined globally by the Chromium Windows
217 # toolchain).
218 # This is only needed for testing purposes, WebRTC wants to be sure it
219 # doesn't assume /DUNICODE and /D_UNICODE but that it explicitly uses
220 # wide character functions.
221 rtc_win_undef_unicode = false
Austin Orion25b0dee2020-10-01 20:47:54222
223 # When set to true, a capturer implementation that uses the
Austin Orion66241e42021-04-22 20:22:25224 # Windows.Graphics.Capture APIs will be available for use. This introduces a
225 # dependency on the Win 10 SDK v10.0.17763.0.
Austin Orion78f04d82021-04-23 19:37:26226 rtc_enable_win_wgc = is_win
philipelb09d8722021-11-23 10:00:24227
228 # Includes the dav1d decoder in the internal decoder factory when set to true.
229 rtc_include_dav1d_in_internal_decoder_factory = true
Dan Minor9c686132018-01-15 15:20:00230}
mbonadei9aa3f0a2017-01-24 14:58:22231
Dan Minor9c686132018-01-15 15:20:00232if (!build_with_mozilla) {
233 import("//testing/test.gni")
mbonadei9aa3f0a2017-01-24 14:58:22234}
235
236# A second declare_args block, so that declarations within it can
237# depend on the possibly overridden variables in the first
238# declare_args block.
239declare_args() {
Dan Minor9c686132018-01-15 15:20:00240 # Enables the use of protocol buffers for debug recordings.
241 rtc_enable_protobuf = !build_with_mozilla
242
243 # Set this to disable building with support for SCTP data channels.
244 rtc_enable_sctp = !build_with_mozilla
245
246 # Disable these to not build components which can be externally provided.
247 rtc_build_json = !build_with_mozilla
248 rtc_build_libsrtp = !build_with_mozilla
249 rtc_build_libvpx = !build_with_mozilla
250 rtc_libvpx_build_vp9 = !build_with_mozilla
Dan Minor9c686132018-01-15 15:20:00251 rtc_build_opus = !build_with_mozilla
252 rtc_build_ssl = !build_with_mozilla
Dan Minor9c686132018-01-15 15:20:00253
254 # Enable libevent task queues on platforms that support it.
Mirko Bonadei775c02e2019-06-19 17:05:00255 if (is_win || is_mac || is_ios || is_nacl || is_fuchsia ||
256 target_cpu == "wasm") {
Dan Minor9c686132018-01-15 15:20:00257 rtc_enable_libevent = false
258 rtc_build_libevent = false
259 } else {
260 rtc_enable_libevent = true
261 rtc_build_libevent = !build_with_mozilla
262 }
263
mbonadei9aa3f0a2017-01-24 14:58:22264 # Excluded in Chromium since its prerequisites don't require Pulse Audio.
265 rtc_include_pulse_audio = !build_with_chromium
266
267 # Chromium uses its own IO handling, so the internal ADM is only built for
268 # standalone WebRTC.
269 rtc_include_internal_audio_device = !build_with_chromium
270
Zhaoliang Ma72e43212020-08-17 09:13:41271 # Set this to true to enable the avx2 support in webrtc.
Per Åhgrena43178c2020-09-25 10:02:32272 # TODO: Make sure that AVX2 works also for non-clang compilers.
273 if (is_clang == true) {
274 rtc_enable_avx2 = true
275 } else {
276 rtc_enable_avx2 = false
277 }
Zhaoliang Ma72e43212020-08-17 09:13:41278
Philipp Hancke1a89bc82021-03-02 20:23:24279 # Set this to true to build the unit tests.
280 # Disabled when building with Chromium or Mozilla.
Dan Minor9c686132018-01-15 15:20:00281 rtc_include_tests = !build_with_chromium && !build_with_mozilla
Oleh Prypin240b8932019-06-07 11:27:07282
283 # Set this to false to skip building code that also requires X11 extensions
284 # such as Xdamage, Xfixes.
285 rtc_use_x11_extensions = rtc_use_x11
Artem Titov6a4a1462019-11-26 15:24:46286
287 # Set this to true to fully remove logging from WebRTC.
288 rtc_disable_logging = false
Doudou Kisabaka2dec4962019-11-28 13:24:31289
290 # Set this to true to disable trace events.
291 rtc_disable_trace_events = false
Artem Titov9dc209a2019-11-28 16:09:30292
293 # Set this to true to disable detailed error message and logging for
294 # RTC_CHECKs.
295 rtc_disable_check_msg = false
Ying Wangef3998f2019-12-09 12:06:53296
297 # Set this to true to disable webrtc metrics.
Mirko Bonadei3c4fda22019-12-10 14:02:53298 rtc_disable_metrics = false
sazaaa42ecd2020-04-01 13:24:40299
300 # Set this to true to exclude the transient suppressor in the audio processing
301 # module from the build.
302 rtc_exclude_transient_suppressor = false
mbonadei9aa3f0a2017-01-24 14:58:22303}
304
Florent Castellia80c3e52021-04-15 13:02:56305declare_args() {
Florent Castellia6983c62021-05-06 08:50:07306 # Enable the dcsctp backend for DataChannels and related unittests
307 rtc_build_dcsctp = !build_with_mozilla && rtc_enable_sctp
308
Florent Castellia80c3e52021-04-15 13:02:56309 # Enable the usrsctp backend for DataChannels and related unittests
310 rtc_build_usrsctp = !build_with_mozilla && rtc_enable_sctp
311}
312
mbonadei9aa3f0a2017-01-24 14:58:22313# Make it possible to provide custom locations for some libraries (move these
314# up into declare_args should we need to actually use them for the GN build).
315rtc_libvpx_dir = "//third_party/libvpx"
mbonadei9aa3f0a2017-01-24 14:58:22316rtc_opus_dir = "//third_party/opus"
317
318# Desktop capturer is supported only on Windows, OSX and Linux.
Oleh Prypin240b8932019-06-07 11:27:07319rtc_desktop_capture_supported =
320 (is_win && current_os != "winuwp") || is_mac ||
Hidehiko Abef264e702020-09-10 09:10:11321 ((is_linux || is_chromeos) && (rtc_use_x11_extensions || rtc_use_pipewire))
mbonadei9aa3f0a2017-01-24 14:58:22322
323###############################################################################
324# Templates
325#
326
Mirko Bonadei92ea95e2017-09-15 04:47:31327# Points to // in webrtc stand-alone or to //third_party/webrtc/ in
mbonadei9aa3f0a2017-01-24 14:58:22328# chromium.
329# We need absolute paths for all configs in templates as they are shared in
330# different subdirectories.
331webrtc_root = get_path_info(".", "abspath")
332
333# Global configuration that should be applied to all WebRTC targets.
334# You normally shouldn't need to include this in your target as it's
335# automatically included when using the rtc_* templates.
336# It sets defines, include paths and compilation warnings accordingly,
337# both for WebRTC stand-alone builds and for the scenario when WebRTC
338# native code is built as part of Chromium.
Mirko Bonadei5f078452021-07-30 20:32:55339rtc_common_configs = [ webrtc_root + ":common_config" ]
mbonadei9aa3f0a2017-01-24 14:58:22340
kthelgasonc0977102017-04-24 07:57:16341if (is_mac || is_ios) {
342 rtc_common_configs += [ "//build/config/compiler:enable_arc" ]
343}
344
mbonadei9aa3f0a2017-01-24 14:58:22345# Global public configuration that should be applied to all WebRTC targets. You
346# normally shouldn't need to include this in your target as it's automatically
347# included when using the rtc_* templates. It set the defines, include paths and
348# compilation warnings that should be propagated to dependents of the targets
349# depending on the target having this config.
350rtc_common_inherited_config = webrtc_root + ":common_inherited_config"
351
352# Common configs to remove or add in all rtc targets.
353rtc_remove_configs = []
Mirko Bonadeifc52b912019-03-01 09:32:56354if (!build_with_chromium && is_clang) {
355 rtc_remove_configs += [ "//build/config/clang:find_bad_constructs" ]
356}
mbonadei9aa3f0a2017-01-24 14:58:22357rtc_add_configs = rtc_common_configs
Mirko Bonadei96ede16a2018-09-06 11:45:44358rtc_prod_configs = [ webrtc_root + ":rtc_prod_config" ]
Mirko Bonadei32ce18c2018-09-18 11:15:54359rtc_library_impl_config = [ webrtc_root + ":library_impl_config" ]
mbonadei9aa3f0a2017-01-24 14:58:22360
361set_defaults("rtc_test") {
362 configs = rtc_add_configs
363 suppressed_configs = []
364}
365
Mirko Bonadei86d053c2019-10-17 19:32:04366set_defaults("rtc_library") {
367 configs = rtc_add_configs
368 suppressed_configs = []
Mirko Bonadei8b7cfa12020-06-03 19:23:41369 absl_deps = []
Mirko Bonadei86d053c2019-10-17 19:32:04370}
371
mbonadei9aa3f0a2017-01-24 14:58:22372set_defaults("rtc_source_set") {
373 configs = rtc_add_configs
374 suppressed_configs = []
Mirko Bonadei8b7cfa12020-06-03 19:23:41375 absl_deps = []
mbonadei9aa3f0a2017-01-24 14:58:22376}
377
Mirko Bonadei86d053c2019-10-17 19:32:04378set_defaults("rtc_static_library") {
mbonadei9aa3f0a2017-01-24 14:58:22379 configs = rtc_add_configs
380 suppressed_configs = []
Mirko Bonadei8b7cfa12020-06-03 19:23:41381 absl_deps = []
mbonadei9aa3f0a2017-01-24 14:58:22382}
383
Mirko Bonadei86d053c2019-10-17 19:32:04384set_defaults("rtc_executable") {
mbonadei9aa3f0a2017-01-24 14:58:22385 configs = rtc_add_configs
386 suppressed_configs = []
387}
388
389set_defaults("rtc_shared_library") {
390 configs = rtc_add_configs
391 suppressed_configs = []
392}
393
Per Kjellandera7f2d842018-01-10 15:54:53394webrtc_default_visibility = [ webrtc_root + "/*" ]
395if (build_with_chromium) {
396 # Allow Chromium's WebRTC overrides targets to bypass the regular
397 # visibility restrictions.
398 webrtc_default_visibility += [ webrtc_root + "/../webrtc_overrides/*" ]
399}
400
Karl Wibergbb23c832018-04-22 17:55:00401# ---- Poisons ----
402#
403# The general idea is that some targets declare that they contain some
404# kind of poison, which makes it impossible for other targets to
405# depend on them (even transitively) unless they declare themselves
406# immune to that particular type of poison.
407#
408# Targets that *contain* poison of type foo should contain the line
409#
410# poisonous = [ "foo" ]
411#
412# and targets that *are immune but arent't themselves poisonous*
413# should contain
414#
415# allow_poison = [ "foo" ]
416#
417# This useful in cases where we have some large target or set of
418# targets and want to ensure that most other targets do not
419# transitively depend on them. For example, almost no high-level
420# target should depend on the audio codecs, since we want WebRTC users
421# to be able to inject any subset of them and actually end up with a
422# binary that doesn't include the codecs they didn't inject.
423#
424# Test-only targets (`testonly` set to true) and non-public targets
425# (`visibility` not containing "*") are automatically immune to all
426# types of poison.
427#
428# Here's the complete list of all types of poison. It must be kept in
429# 1:1 correspondence with the set of //:poison_* targets.
430#
431all_poison_types = [
432 # Encoders and decoders for specific audio codecs such as Opus and iSAC.
433 "audio_codecs",
Anders Carlsson1f433e42018-04-24 14:39:05434
Danil Chapovalov41300af2019-07-10 10:44:43435 # Default task queue implementation.
436 "default_task_queue",
Sam Zackrisson492fdf42019-10-25 08:45:58437
Sam Zackrisson03cb7e52021-12-06 14:40:04438 # Default echo detector implementation.
439 "default_echo_detector",
440
Sam Zackrisson492fdf42019-10-25 08:45:58441 # JSON parsing should not be needed in the "slim and modular" WebRTC.
442 "rtc_json",
443
444 # Software video codecs (VP8 and VP9 through libvpx).
445 "software_video_codecs",
Karl Wibergbb23c832018-04-22 17:55:00446]
447
Mirko Bonadei9a89a492018-05-29 14:22:32448absl_include_config = "//third_party/abseil-cpp:absl_include_config"
449absl_define_config = "//third_party/abseil-cpp:absl_define_config"
450
Mirko Bonadei2ab97f62019-07-18 11:44:12451# Abseil Flags are testonly, so this config will only be applied to WebRTC targets
452# that are testonly.
453absl_flags_config = webrtc_root + ":absl_flags_configs"
454
Mirko Bonadeie99b6cc2020-11-25 15:41:37455# WebRTC wrapper of Chromium's test() template. This template just adds some
456# WebRTC only configuration in order to avoid to duplicate it for every WebRTC
457# target.
458# The parameter `is_xctest` is different from the one in the Chromium's test()
459# template (and it is not forwarded to it). In rtc_test(), the argument
460# `is_xctest` is used to avoid to take dependencies that are not needed
461# in case the test is a real XCTest (using the XCTest framework).
mbonadei9aa3f0a2017-01-24 14:58:22462template("rtc_test") {
463 test(target_name) {
464 forward_variables_from(invoker,
465 "*",
466 [
467 "configs",
Mirko Bonadeie99b6cc2020-11-25 15:41:37468 "is_xctest",
mbonadei9aa3f0a2017-01-24 14:58:22469 "public_configs",
470 "suppressed_configs",
Karl Wiberg138d4ac2017-10-16 09:16:19471 "visibility",
mbonadei9aa3f0a2017-01-24 14:58:22472 ])
Mirko Bonadeidd411942017-11-21 14:35:27473
474 # Always override to public because when target_os is Android the `test`
475 # template can override it to [ "*" ] and we want to avoid conditional
476 # visibility.
Mirko Bonadei21558812017-11-21 11:47:34477 visibility = [ "*" ]
mbonadei9aa3f0a2017-01-24 14:58:22478 configs += invoker.configs
479 configs -= rtc_remove_configs
480 configs -= invoker.suppressed_configs
Mirko Bonadei9a89a492018-05-29 14:22:32481 public_configs = [
482 rtc_common_inherited_config,
483 absl_include_config,
484 absl_define_config,
Mirko Bonadei2ab97f62019-07-18 11:44:12485 absl_flags_config,
Mirko Bonadei9a89a492018-05-29 14:22:32486 ]
mbonadei9aa3f0a2017-01-24 14:58:22487 if (defined(invoker.public_configs)) {
488 public_configs += invoker.public_configs
489 }
sakald7fdb802017-05-26 08:51:53490 if (!build_with_chromium && is_android) {
Jianjun Zhu037f3e42017-08-15 13:48:37491 android_manifest = webrtc_root + "test/android/AndroidManifest.xml"
Peter Kotwicz3ceb16e2021-04-14 22:53:11492 use_raw_android_executable = false
Jeremy Leconteb19cfee2020-06-25 20:57:49493 min_sdk_version = 21
Mirko Bonadeibd393b22020-07-10 21:00:41494 target_sdk_version = 23
Mirko Bonadei80939352021-04-12 17:03:37495 deps += [
496 "//build/android/gtest_apk:native_test_instrumentation_test_runner_java",
497 webrtc_root + "test:native_test_java",
498 ]
sakald7fdb802017-05-26 08:51:53499 }
Mirko Bonadeie99b6cc2020-11-25 15:41:37500
501 # When not targeting a simulator, building //base/test:google_test_runner
502 # fails, so it is added only when the test is not a real XCTest and when
503 # targeting a simulator.
Mirko Bonadei58678a02020-12-01 09:54:40504 if (is_ios && target_cpu == "x64" && rtc_include_tests) {
Mirko Bonadeie99b6cc2020-11-25 15:41:37505 if (!defined(invoker.is_xctest) || !invoker.is_xctest) {
506 xctest_module_target = "//base/test:google_test_runner"
507 }
508 }
Andrey Logvin78646002021-01-29 10:50:19509
510 # If absl_deps is [], no action is needed. If not [], then it needs to be
511 # converted to //third_party/abseil-cpp:absl when build_with_chromium=true
512 # otherwise it just needs to be added to deps.
513 if (defined(absl_deps) && absl_deps != []) {
514 if (!defined(deps)) {
515 deps = []
516 }
517 if (build_with_chromium) {
518 deps += [ "//third_party/abseil-cpp:absl" ]
519 } else {
520 deps += absl_deps
521 }
522 }
523
Mirko Bonadei1d77c3e2021-01-26 16:10:04524 if (using_sanitizer) {
525 if (is_linux) {
526 if (!defined(invoker.data)) {
527 data = []
528 }
529 data +=
530 [ "//third_party/llvm-build/Release+Asserts/lib/libstdc++.so.6" ]
531 }
532 }
Jeremy Leconted15f3e12022-02-18 09:16:32533 # TODO(crbug.com/webrtc/13556): Adding the .app folder in the runtime_deps
534 # shoulnd't be necessary. this code should be removed and the same solution
535 # as Chromium should be used.
536 if (is_ios) {
537 if (!defined(invoker.data)) {
538 data = []
539 }
540 data += [ "${root_out_dir}/${target_name}.app" ]
541 }
mbonadei9aa3f0a2017-01-24 14:58:22542 }
543}
544
545template("rtc_source_set") {
546 source_set(target_name) {
547 forward_variables_from(invoker,
548 "*",
549 [
550 "configs",
551 "public_configs",
552 "suppressed_configs",
Karl Wiberg138d4ac2017-10-16 09:16:19553 "visibility",
mbonadei9aa3f0a2017-01-24 14:58:22554 ])
Karl Wiberg138d4ac2017-10-16 09:16:19555 forward_variables_from(invoker, [ "visibility" ])
Per Kjellandera7f2d842018-01-10 15:54:53556 if (!defined(visibility)) {
557 visibility = webrtc_default_visibility
558 }
Karl Wibergbb23c832018-04-22 17:55:00559
560 # What's your poison?
561 if (defined(testonly) && testonly) {
562 assert(!defined(poisonous))
563 assert(!defined(allow_poison))
564 } else {
565 if (!defined(poisonous)) {
566 poisonous = []
567 }
568 if (!defined(allow_poison)) {
569 allow_poison = []
570 }
571 if (!defined(assert_no_deps)) {
572 assert_no_deps = []
573 }
574 if (!defined(deps)) {
575 deps = []
576 }
577 foreach(p, poisonous) {
578 deps += [ webrtc_root + ":poison_" + p ]
579 }
580 foreach(poison_type, all_poison_types) {
581 allow_dep = true
582 foreach(v, visibility) {
583 if (v == "*") {
584 allow_dep = false
585 }
586 }
587 foreach(p, allow_poison + poisonous) {
588 if (p == poison_type) {
589 allow_dep = true
590 }
591 }
592 if (!allow_dep) {
593 assert_no_deps += [ webrtc_root + ":poison_" + poison_type ]
594 }
595 }
596 }
597
Mirko Bonadei92dd35d2019-11-15 15:08:41598 # Chromium should only depend on the WebRTC component in order to
599 # avoid to statically link WebRTC in a component build.
600 if (build_with_chromium) {
601 publicly_visible = false
602 foreach(v, visibility) {
603 if (v == "*") {
604 publicly_visible = true
605 }
606 }
607 if (publicly_visible) {
608 visibility = []
609 visibility = webrtc_default_visibility
610 }
611 }
612
Mirko Bonadei96ede16a2018-09-06 11:45:44613 if (!defined(testonly) || !testonly) {
614 configs += rtc_prod_configs
615 }
616
mbonadei9aa3f0a2017-01-24 14:58:22617 configs += invoker.configs
Mirko Bonadei32ce18c2018-09-18 11:15:54618 configs += rtc_library_impl_config
mbonadei9aa3f0a2017-01-24 14:58:22619 configs -= rtc_remove_configs
620 configs -= invoker.suppressed_configs
Mirko Bonadei9a89a492018-05-29 14:22:32621 public_configs = [
622 rtc_common_inherited_config,
623 absl_include_config,
624 absl_define_config,
625 ]
Mirko Bonadei2ab97f62019-07-18 11:44:12626 if (defined(testonly) && testonly) {
627 public_configs += [ absl_flags_config ]
628 }
mbonadei9aa3f0a2017-01-24 14:58:22629 if (defined(invoker.public_configs)) {
630 public_configs += invoker.public_configs
631 }
Mirko Bonadei8b7cfa12020-06-03 19:23:41632
Mirko Bonadei96115cf2020-06-23 21:39:56633 # If absl_deps is [], no action is needed. If not [], then it needs to be
634 # converted to //third_party/abseil-cpp:absl when build_with_chromium=true
Mirko Bonadei8b7cfa12020-06-03 19:23:41635 # otherwise it just needs to be added to deps.
636 if (absl_deps != []) {
Mirko Bonadei2dcf3482020-06-05 12:30:41637 if (!defined(deps)) {
638 deps = []
639 }
Mirko Bonadei08ce9862020-06-11 09:25:32640 if (build_with_chromium) {
641 deps += [ "//third_party/abseil-cpp:absl" ]
Mirko Bonadei8b7cfa12020-06-03 19:23:41642 } else {
643 deps += absl_deps
644 }
645 }
mbonadei9aa3f0a2017-01-24 14:58:22646 }
647}
648
mbonadei9aa3f0a2017-01-24 14:58:22649template("rtc_static_library") {
650 static_library(target_name) {
651 forward_variables_from(invoker,
652 "*",
653 [
654 "configs",
655 "public_configs",
656 "suppressed_configs",
Karl Wiberg138d4ac2017-10-16 09:16:19657 "visibility",
mbonadei9aa3f0a2017-01-24 14:58:22658 ])
Karl Wiberg138d4ac2017-10-16 09:16:19659 forward_variables_from(invoker, [ "visibility" ])
Per Kjellandera7f2d842018-01-10 15:54:53660 if (!defined(visibility)) {
661 visibility = webrtc_default_visibility
662 }
Karl Wibergbb23c832018-04-22 17:55:00663
664 # What's your poison?
665 if (defined(testonly) && testonly) {
666 assert(!defined(poisonous))
667 assert(!defined(allow_poison))
668 } else {
669 if (!defined(poisonous)) {
670 poisonous = []
671 }
672 if (!defined(allow_poison)) {
673 allow_poison = []
674 }
675 if (!defined(assert_no_deps)) {
676 assert_no_deps = []
677 }
678 if (!defined(deps)) {
679 deps = []
680 }
681 foreach(p, poisonous) {
682 deps += [ webrtc_root + ":poison_" + p ]
683 }
684 foreach(poison_type, all_poison_types) {
685 allow_dep = true
686 foreach(v, visibility) {
687 if (v == "*") {
688 allow_dep = false
689 }
690 }
691 foreach(p, allow_poison + poisonous) {
692 if (p == poison_type) {
693 allow_dep = true
694 }
695 }
696 if (!allow_dep) {
697 assert_no_deps += [ webrtc_root + ":poison_" + poison_type ]
698 }
699 }
700 }
701
Mirko Bonadei96ede16a2018-09-06 11:45:44702 if (!defined(testonly) || !testonly) {
703 configs += rtc_prod_configs
704 }
705
mbonadei9aa3f0a2017-01-24 14:58:22706 configs += invoker.configs
Mirko Bonadei32ce18c2018-09-18 11:15:54707 configs += rtc_library_impl_config
mbonadei9aa3f0a2017-01-24 14:58:22708 configs -= rtc_remove_configs
709 configs -= invoker.suppressed_configs
Mirko Bonadei9a89a492018-05-29 14:22:32710 public_configs = [
711 rtc_common_inherited_config,
712 absl_include_config,
713 absl_define_config,
714 ]
Mirko Bonadei2ab97f62019-07-18 11:44:12715 if (defined(testonly) && testonly) {
716 public_configs += [ absl_flags_config ]
717 }
mbonadei9aa3f0a2017-01-24 14:58:22718 if (defined(invoker.public_configs)) {
719 public_configs += invoker.public_configs
720 }
Mirko Bonadei8b7cfa12020-06-03 19:23:41721
Mirko Bonadei96115cf2020-06-23 21:39:56722 # If absl_deps is [], no action is needed. If not [], then it needs to be
723 # converted to //third_party/abseil-cpp:absl when build_with_chromium=true
Mirko Bonadei8b7cfa12020-06-03 19:23:41724 # otherwise it just needs to be added to deps.
725 if (absl_deps != []) {
Mirko Bonadei2dcf3482020-06-05 12:30:41726 if (!defined(deps)) {
727 deps = []
728 }
Mirko Bonadei08ce9862020-06-11 09:25:32729 if (build_with_chromium) {
730 deps += [ "//third_party/abseil-cpp:absl" ]
Mirko Bonadei8b7cfa12020-06-03 19:23:41731 } else {
732 deps += absl_deps
733 }
734 }
mbonadei9aa3f0a2017-01-24 14:58:22735 }
736}
737
Mirko Bonadei86d053c2019-10-17 19:32:04738# This template automatically switches the target type between source_set
739# and static_library.
740#
741# This should be the default target type for all the WebRTC targets with
742# one exception. Do not use this template for header only targets, in that case
743# rtc_source_set must be used in order to avoid build errors (e.g. libtool
744# complains if the output .a file is empty).
745#
746# How does it work:
747# Since all files in a source_set are linked into a final binary, while files
748# in a static library are only linked in if at least one symbol in them is
749# referenced, in component builds source_sets are easy to deal with because
750# all their object files are passed to the linker to create a shared library.
751# In release builds instead, static_libraries are preferred since they allow
752# the linker to discard dead code.
753# For the same reason, testonly targets will always be expanded to
754# source_set in order to be sure that tests are present in the test binary.
755template("rtc_library") {
756 if (is_component_build || (defined(invoker.testonly) && invoker.testonly)) {
757 target_type = "source_set"
758 } else {
759 target_type = "static_library"
760 }
761 target(target_type, target_name) {
762 forward_variables_from(invoker,
763 "*",
764 [
765 "configs",
766 "public_configs",
767 "suppressed_configs",
768 "visibility",
769 ])
770 forward_variables_from(invoker, [ "visibility" ])
771 if (!defined(visibility)) {
772 visibility = webrtc_default_visibility
773 }
774
775 # What's your poison?
776 if (defined(testonly) && testonly) {
777 assert(!defined(poisonous))
778 assert(!defined(allow_poison))
779 } else {
780 if (!defined(poisonous)) {
781 poisonous = []
782 }
783 if (!defined(allow_poison)) {
784 allow_poison = []
785 }
786 if (!defined(assert_no_deps)) {
787 assert_no_deps = []
788 }
789 if (!defined(deps)) {
790 deps = []
791 }
792 foreach(p, poisonous) {
793 deps += [ webrtc_root + ":poison_" + p ]
794 }
795 foreach(poison_type, all_poison_types) {
796 allow_dep = true
797 foreach(v, visibility) {
798 if (v == "*") {
799 allow_dep = false
800 }
801 }
802 foreach(p, allow_poison + poisonous) {
803 if (p == poison_type) {
804 allow_dep = true
805 }
806 }
807 if (!allow_dep) {
808 assert_no_deps += [ webrtc_root + ":poison_" + poison_type ]
809 }
810 }
811 }
812
Mirko Bonadei92dd35d2019-11-15 15:08:41813 # Chromium should only depend on the WebRTC component in order to
814 # avoid to statically link WebRTC in a component build.
815 if (build_with_chromium) {
816 publicly_visible = false
817 foreach(v, visibility) {
818 if (v == "*") {
819 publicly_visible = true
820 }
821 }
822 if (publicly_visible) {
823 visibility = []
824 visibility = webrtc_default_visibility
825 }
826 }
827
Mirko Bonadei86d053c2019-10-17 19:32:04828 if (!defined(testonly) || !testonly) {
829 configs += rtc_prod_configs
830 }
831
832 configs += invoker.configs
833 configs += rtc_library_impl_config
834 configs -= rtc_remove_configs
835 configs -= invoker.suppressed_configs
836 public_configs = [
837 rtc_common_inherited_config,
838 absl_include_config,
839 absl_define_config,
840 ]
841 if (defined(testonly) && testonly) {
842 public_configs += [ absl_flags_config ]
843 }
844 if (defined(invoker.public_configs)) {
845 public_configs += invoker.public_configs
846 }
Mirko Bonadei8b7cfa12020-06-03 19:23:41847
Mirko Bonadei96115cf2020-06-23 21:39:56848 # If absl_deps is [], no action is needed. If not [], then it needs to be
849 # converted to //third_party/abseil-cpp:absl when build_with_chromium=true
Mirko Bonadei8b7cfa12020-06-03 19:23:41850 # otherwise it just needs to be added to deps.
851 if (absl_deps != []) {
Mirko Bonadei2dcf3482020-06-05 12:30:41852 if (!defined(deps)) {
853 deps = []
854 }
Mirko Bonadei08ce9862020-06-11 09:25:32855 if (build_with_chromium) {
856 deps += [ "//third_party/abseil-cpp:absl" ]
Mirko Bonadei8b7cfa12020-06-03 19:23:41857 } else {
858 deps += absl_deps
859 }
860 }
Mirko Bonadei86d053c2019-10-17 19:32:04861 }
862}
863
864template("rtc_executable") {
865 executable(target_name) {
866 forward_variables_from(invoker,
867 "*",
868 [
869 "deps",
870 "configs",
871 "public_configs",
872 "suppressed_configs",
873 "visibility",
874 ])
875 forward_variables_from(invoker, [ "visibility" ])
876 if (!defined(visibility)) {
877 visibility = webrtc_default_visibility
878 }
879 configs += invoker.configs
880 configs -= rtc_remove_configs
881 configs -= invoker.suppressed_configs
882 deps = invoker.deps
883
884 public_configs = [
885 rtc_common_inherited_config,
886 absl_include_config,
887 absl_define_config,
888 ]
889 if (defined(testonly) && testonly) {
890 public_configs += [ absl_flags_config ]
891 }
892 if (defined(invoker.public_configs)) {
893 public_configs += invoker.public_configs
894 }
895 if (is_win) {
896 deps += [
897 # Give executables the default manifest on Windows (a no-op elsewhere).
898 "//build/win:default_exe_manifest",
899 ]
900 }
901 }
902}
903
mbonadei9aa3f0a2017-01-24 14:58:22904template("rtc_shared_library") {
905 shared_library(target_name) {
906 forward_variables_from(invoker,
907 "*",
908 [
909 "configs",
910 "public_configs",
911 "suppressed_configs",
Karl Wiberg138d4ac2017-10-16 09:16:19912 "visibility",
mbonadei9aa3f0a2017-01-24 14:58:22913 ])
Karl Wiberg138d4ac2017-10-16 09:16:19914 forward_variables_from(invoker, [ "visibility" ])
Per Kjellandera7f2d842018-01-10 15:54:53915 if (!defined(visibility)) {
916 visibility = webrtc_default_visibility
917 }
Karl Wibergbb23c832018-04-22 17:55:00918
919 # What's your poison?
920 if (defined(testonly) && testonly) {
921 assert(!defined(poisonous))
922 assert(!defined(allow_poison))
923 } else {
924 if (!defined(poisonous)) {
925 poisonous = []
926 }
927 if (!defined(allow_poison)) {
928 allow_poison = []
929 }
930 if (!defined(assert_no_deps)) {
931 assert_no_deps = []
932 }
933 if (!defined(deps)) {
934 deps = []
935 }
936 foreach(p, poisonous) {
937 deps += [ webrtc_root + ":poison_" + p ]
938 }
939 foreach(poison_type, all_poison_types) {
940 allow_dep = true
941 foreach(v, visibility) {
942 if (v == "*") {
943 allow_dep = false
944 }
945 }
946 foreach(p, allow_poison + poisonous) {
947 if (p == poison_type) {
948 allow_dep = true
949 }
950 }
951 if (!allow_dep) {
952 assert_no_deps += [ webrtc_root + ":poison_" + poison_type ]
953 }
954 }
955 }
956
mbonadei9aa3f0a2017-01-24 14:58:22957 configs += invoker.configs
958 configs -= rtc_remove_configs
959 configs -= invoker.suppressed_configs
Mirko Bonadei9a89a492018-05-29 14:22:32960 public_configs = [
961 rtc_common_inherited_config,
962 absl_include_config,
963 absl_define_config,
964 ]
Mirko Bonadei2ab97f62019-07-18 11:44:12965 if (defined(testonly) && testonly) {
966 public_configs += [ absl_flags_config ]
967 }
mbonadei9aa3f0a2017-01-24 14:58:22968 if (defined(invoker.public_configs)) {
969 public_configs += invoker.public_configs
970 }
971 }
972}
kthelgason4065a5762017-02-14 12:58:56973
974if (is_ios) {
Joel Sutherlandd2fb1bf2018-10-02 20:08:25975 # TODO: Generate module.modulemap file to enable use in Swift
976 # projects. See "mac_framework_bundle_with_umbrella_header".
Anders Carlssondc6b4772018-01-15 12:31:03977 template("ios_framework_bundle_with_umbrella_header") {
978 forward_variables_from(invoker, [ "output_name" ])
Daniel.L (Byoungchan Lee)32026ed2020-10-16 22:49:28979 this_target_name = target_name
Anders Carlssondc6b4772018-01-15 12:31:03980 umbrella_header_path =
Daniel.L (Byoungchan Lee)32026ed2020-10-16 22:49:28981 "$target_gen_dir/$output_name.framework/WebRTC/$output_name.h"
982
983 action_foreach("create_bracket_include_headers_$target_name") {
984 script = "//tools_webrtc/apple/copy_framework_header.py"
985 sources = invoker.sources
986 output_name = invoker.output_name
987 outputs = [
988 "$target_gen_dir/$output_name.framework/WebRTC/{{source_file_part}}",
989 ]
990 args = [
991 "--input",
992 "{{source}}",
993 "--output",
994 rebase_path(target_gen_dir, root_build_dir) +
995 "/$output_name.framework/WebRTC/{{source_file_part}}",
996 ]
997 }
Anders Carlssondc6b4772018-01-15 12:31:03998
999 ios_framework_bundle(target_name) {
Daniel.L (Byoungchan Lee)32026ed2020-10-16 22:49:281000 forward_variables_from(invoker, "*", [ "public_headers" ])
1001 public_headers = get_target_outputs(
1002 ":create_bracket_include_headers_$this_target_name")
1003 deps += [
1004 ":copy_umbrella_header_$target_name",
1005 ":create_bracket_include_headers_$target_name",
1006 ]
Anders Carlssondc6b4772018-01-15 12:31:031007 }
1008
1009 action("umbrella_header_$target_name") {
Daniel.L (Byoungchan Lee)32026ed2020-10-16 22:49:281010 public_headers = get_target_outputs(
1011 ":create_bracket_include_headers_$this_target_name")
Anders Carlssondc6b4772018-01-15 12:31:031012
1013 script = "//tools_webrtc/ios/generate_umbrella_header.py"
1014
Mirko Bonadeiccbe95f2020-01-21 11:10:101015 outputs = [ umbrella_header_path ]
Anders Carlssondc6b4772018-01-15 12:31:031016 args = [
1017 "--out",
1018 rebase_path(umbrella_header_path, root_build_dir),
1019 "--sources",
Anders Carlsson7bca8ca2018-08-30 07:30:291020 ] + public_headers
Daniel.L (Byoungchan Lee)32026ed2020-10-16 22:49:281021 deps = [ ":create_bracket_include_headers_$this_target_name" ]
Anders Carlssondc6b4772018-01-15 12:31:031022 }
1023
Jordan Rose53d3fc92021-07-06 19:16:411024 if (target_environment == "catalyst") {
1025 # Catalyst frameworks use the same layout as regular Mac frameworks.
1026 headers_dir = "Versions/A/Headers"
1027 } else {
1028 headers_dir = "Headers"
1029 }
Anders Carlssondc6b4772018-01-15 12:31:031030 copy("copy_umbrella_header_$target_name") {
Mirko Bonadeiccbe95f2020-01-21 11:10:101031 sources = [ umbrella_header_path ]
1032 outputs =
Jordan Rose53d3fc92021-07-06 19:16:411033 [ "$root_out_dir/$output_name.framework/$headers_dir/$output_name.h" ]
Anders Carlssondc6b4772018-01-15 12:31:031034
Mirko Bonadeiccbe95f2020-01-21 11:10:101035 deps = [ ":umbrella_header_$target_name" ]
Anders Carlssondc6b4772018-01-15 12:31:031036 }
1037 }
1038
1039 set_defaults("ios_framework_bundle_with_umbrella_header") {
1040 configs = default_shared_library_configs
1041 }
kthelgason4065a5762017-02-14 12:58:561042}
Mirko Bonadeifbb3b7d2017-11-07 15:36:331043
Anders Carlsson37bbf792018-09-05 14:29:271044if (is_mac) {
1045 template("mac_framework_bundle_with_umbrella_header") {
1046 forward_variables_from(invoker, [ "output_name" ])
Anders Carlsson95c56ee2018-09-06 13:48:171047 this_target_name = target_name
1048 umbrella_header_path = "$target_gen_dir/umbrella_header/$output_name.h"
Joel Sutherlandd2fb1bf2018-10-02 20:08:251049 modulemap_path = "$target_gen_dir/Modules/module.modulemap"
Anders Carlsson37bbf792018-09-05 14:29:271050
1051 mac_framework_bundle(target_name) {
Thomas Anderson6fde78c2019-01-23 18:40:291052 forward_variables_from(invoker, "*", [ "configs" ])
1053 if (defined(invoker.configs)) {
1054 configs += invoker.configs
1055 }
Anders Carlsson37bbf792018-09-05 14:29:271056
1057 framework_version = "A"
Joel Sutherlandd2fb1bf2018-10-02 20:08:251058 framework_contents = [
1059 "Headers",
1060 "Modules",
1061 "Resources",
1062 ]
Anders Carlsson37bbf792018-09-05 14:29:271063
1064 ldflags = [
1065 "-all_load",
1066 "-install_name",
1067 "@rpath/$output_name.framework/$output_name",
1068 ]
1069
1070 deps += [
Anders Carlsson95c56ee2018-09-06 13:48:171071 ":copy_framework_headers_$this_target_name",
Joel Sutherlandd2fb1bf2018-10-02 20:08:251072 ":copy_modulemap_$this_target_name",
Anders Carlsson95c56ee2018-09-06 13:48:171073 ":copy_umbrella_header_$this_target_name",
Daniel.L (Byoungchan Lee)32026ed2020-10-16 22:49:281074 ":create_bracket_include_headers_$this_target_name",
Joel Sutherlandd2fb1bf2018-10-02 20:08:251075 ":modulemap_$this_target_name",
Anders Carlsson95c56ee2018-09-06 13:48:171076 ":umbrella_header_$this_target_name",
Anders Carlsson37bbf792018-09-05 14:29:271077 ]
1078 }
1079
Daniel.L (Byoungchan Lee)32026ed2020-10-16 22:49:281080 action_foreach("create_bracket_include_headers_$this_target_name") {
1081 script = "//tools_webrtc/apple/copy_framework_header.py"
1082 sources = invoker.sources
1083 output_name = invoker.output_name
1084 outputs = [
1085 "$target_gen_dir/$output_name.framework/WebRTC/{{source_file_part}}",
1086 ]
1087 args = [
1088 "--input",
1089 "{{source}}",
1090 "--output",
1091 rebase_path(target_gen_dir, root_build_dir) +
1092 "/$output_name.framework/WebRTC/{{source_file_part}}",
1093 ]
1094 }
1095
Anders Carlsson95c56ee2018-09-06 13:48:171096 bundle_data("copy_framework_headers_$this_target_name") {
Daniel.L (Byoungchan Lee)32026ed2020-10-16 22:49:281097 sources = get_target_outputs(
1098 ":create_bracket_include_headers_$this_target_name")
Anders Carlsson37bbf792018-09-05 14:29:271099
Mirko Bonadeiccbe95f2020-01-21 11:10:101100 outputs = [ "{{bundle_contents_dir}}/Headers/{{source_file_part}}" ]
Daniel.L (Byoungchan Lee)32026ed2020-10-16 22:49:281101 deps = [ ":create_bracket_include_headers_$this_target_name" ]
Anders Carlsson37bbf792018-09-05 14:29:271102 }
1103
Joel Sutherlandd2fb1bf2018-10-02 20:08:251104 action("modulemap_$this_target_name") {
1105 script = "//tools_webrtc/ios/generate_modulemap.py"
1106 args = [
1107 "--out",
1108 rebase_path(modulemap_path, root_build_dir),
1109 "--name",
1110 output_name,
1111 ]
Mirko Bonadeiccbe95f2020-01-21 11:10:101112 outputs = [ modulemap_path ]
Joel Sutherlandd2fb1bf2018-10-02 20:08:251113 }
1114
1115 bundle_data("copy_modulemap_$this_target_name") {
Mirko Bonadeiccbe95f2020-01-21 11:10:101116 sources = [ modulemap_path ]
1117 outputs = [ "{{bundle_contents_dir}}/Modules/module.modulemap" ]
1118 deps = [ ":modulemap_$this_target_name" ]
Joel Sutherlandd2fb1bf2018-10-02 20:08:251119 }
1120
Anders Carlsson95c56ee2018-09-06 13:48:171121 action("umbrella_header_$this_target_name") {
Daniel.L (Byoungchan Lee)32026ed2020-10-16 22:49:281122 sources = get_target_outputs(
1123 ":create_bracket_include_headers_$this_target_name")
Anders Carlsson37bbf792018-09-05 14:29:271124
1125 script = "//tools_webrtc/ios/generate_umbrella_header.py"
1126
Mirko Bonadeiccbe95f2020-01-21 11:10:101127 outputs = [ umbrella_header_path ]
Anders Carlsson37bbf792018-09-05 14:29:271128 args = [
1129 "--out",
1130 rebase_path(umbrella_header_path, root_build_dir),
1131 "--sources",
1132 ] + sources
Daniel.L (Byoungchan Lee)32026ed2020-10-16 22:49:281133 deps = [ ":create_bracket_include_headers_$this_target_name" ]
Anders Carlsson37bbf792018-09-05 14:29:271134 }
1135
Anders Carlsson95c56ee2018-09-06 13:48:171136 bundle_data("copy_umbrella_header_$this_target_name") {
Mirko Bonadeiccbe95f2020-01-21 11:10:101137 sources = [ umbrella_header_path ]
1138 outputs = [ "{{bundle_contents_dir}}/Headers/$output_name.h" ]
Anders Carlsson37bbf792018-09-05 14:29:271139
Mirko Bonadeiccbe95f2020-01-21 11:10:101140 deps = [ ":umbrella_header_$this_target_name" ]
Anders Carlsson37bbf792018-09-05 14:29:271141 }
1142 }
1143}
1144
Mirko Bonadeifbb3b7d2017-11-07 15:36:331145if (is_android) {
1146 template("rtc_android_library") {
1147 android_library(target_name) {
1148 forward_variables_from(invoker,
1149 "*",
1150 [
1151 "configs",
1152 "public_configs",
1153 "suppressed_configs",
1154 "visibility",
1155 ])
1156
Oleh Prypin05aee742018-11-23 16:29:441157 errorprone_args = []
Sami Kalliomäkie7fac682018-03-20 15:32:491158
Mirko Bonadeifbb3b7d2017-11-07 15:36:331159 # Treat warnings as errors.
Oleh Prypin05aee742018-11-23 16:29:441160 errorprone_args += [ "-Werror" ]
Sami Kalliomäkie7fac682018-03-20 15:32:491161
1162 # Add any arguments defined by the invoker.
Oleh Prypin05aee742018-11-23 16:29:441163 if (defined(invoker.errorprone_args)) {
1164 errorprone_args += invoker.errorprone_args
Sami Kalliomäkie7fac682018-03-20 15:32:491165 }
Mirko Bonadeifbb3b7d2017-11-07 15:36:331166
Sami Kalliomäkidc526512018-03-27 15:07:271167 if (!defined(deps)) {
1168 deps = []
1169 }
Sami Kalliomäkidc526512018-03-27 15:07:271170
Mirko Bonadeifbb3b7d2017-11-07 15:36:331171 no_build_hooks = true
Mirko Bonadei8b7cfa12020-06-03 19:23:411172 not_needed([ "android_manifest" ])
Mirko Bonadeifbb3b7d2017-11-07 15:36:331173 }
1174 }
1175
1176 template("rtc_android_apk") {
1177 android_apk(target_name) {
1178 forward_variables_from(invoker,
1179 "*",
1180 [
1181 "configs",
1182 "public_configs",
1183 "suppressed_configs",
1184 "visibility",
1185 ])
1186
1187 # Treat warnings as errors.
Yves Gerey2f385d22019-11-20 11:10:081188 errorprone_args = []
1189 errorprone_args += [ "-Werror" ]
Sami Kalliomäkidc526512018-03-27 15:07:271190
1191 if (!defined(deps)) {
1192 deps = []
1193 }
Sami Kalliomäkidc526512018-03-27 15:07:271194
Mirko Bonadeifbb3b7d2017-11-07 15:36:331195 no_build_hooks = true
1196 }
1197 }
1198
1199 template("rtc_instrumentation_test_apk") {
1200 instrumentation_test_apk(target_name) {
1201 forward_variables_from(invoker,
1202 "*",
1203 [
1204 "configs",
1205 "public_configs",
1206 "suppressed_configs",
1207 "visibility",
1208 ])
1209
1210 # Treat warnings as errors.
Yves Gerey2f385d22019-11-20 11:10:081211 errorprone_args = []
1212 errorprone_args += [ "-Werror" ]
Sami Kalliomäkidc526512018-03-27 15:07:271213
1214 if (!defined(deps)) {
1215 deps = []
1216 }
Sami Kalliomäkidc526512018-03-27 15:07:271217
Mirko Bonadeifbb3b7d2017-11-07 15:36:331218 no_build_hooks = true
1219 }
1220 }
1221}