blob: 3a89a9a9c7cd318e10cdc856b11d061c909a140b [file] [log] [blame]
mbonadei9aa3f0a2017-01-24 06:58:22 -08001# 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 06:58:22 -08008import("//build/config/arm.gni")
9import("//build/config/features.gni")
10import("//build/config/mips.gni")
11import("//build/config/sanitizers/sanitizers.gni")
Tomas Popela318da512018-11-13 06:32:23 +010012import("//build/config/sysroot.gni")
ehmaldonado0d729b32017-02-10 01:38:23 -080013import("//build/config/ui.gni")
mbonadei9aa3f0a2017-01-24 06:58:22 -080014import("//build_overrides/build.gni")
mbonadei96606272017-03-03 19:41:59 -080015
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(
26 "More info about component builds at: " + "https://chromium.googlesource.com/chromium/src/+/master/docs/component_build.md")
27 assert(!is_component_build, "Component builds are not supported in WebRTC.")
28}
29
kthelgason4065a572017-02-14 04:58:56 -080030if (is_ios) {
31 import("//build/config/ios/rules.gni")
32}
mbonadei9aa3f0a2017-01-24 06:58:22 -080033
Anders Carlsson37bbf792018-09-05 16:29:27 +020034if (is_mac) {
35 import("//build/config/mac/rules.gni")
36}
37
mbonadei9aa3f0a2017-01-24 06:58:22 -080038declare_args() {
Mirko Bonadei028248c2018-10-10 12:19:02 +020039 # Setting this to true will make RTC_EXPORT (see rtc_base/system/rtc_export.h)
40 # expand to code that will manage symbols visibility.
41 rtc_enable_symbol_export = false
42
Mirko Bonadei31b0b452018-08-22 10:37:11 +020043 # Setting this to true will define WEBRTC_EXCLUDE_FIELD_TRIAL_DEFAULT which
Mirko Bonadei70400902018-08-21 15:44:28 +020044 # will tell the pre-processor to remove the default definition of symbols
45 # needed to use field_trial. In that case a new implementation needs to be
46 # provided.
Mirko Bonadei31b0b452018-08-22 10:37:11 +020047 if (build_with_chromium) {
48 # When WebRTC is built as part of Chromium it should exclude the default
49 # implementation of field_trial unless it is building for NACL or
50 # Chromecast.
51 rtc_exclude_field_trial_default = !is_nacl && !is_chromecast
52 } else {
53 rtc_exclude_field_trial_default = false
54 }
Mirko Bonadei70400902018-08-21 15:44:28 +020055
Mirko Bonadei906add42018-09-05 16:03:16 +020056 # Setting this to true will define WEBRTC_EXCLUDE_METRICS_DEFAULT which
57 # will tell the pre-processor to remove the default definition of symbols
58 # needed to use metrics. In that case a new implementation needs to be
59 # provided.
60 rtc_exclude_metrics_default = build_with_chromium
61
Benjamin Wrightd6f86e82018-05-08 13:12:25 -070062 # Setting this to false will require the API user to pass in their own
63 # SSLCertificateVerifier to verify the certificates presented from a
64 # TLS-TURN server. In return disabling this saves around 100kb in the binary.
65 rtc_builtin_ssl_root_certificates = true
66
Karl Wibergeb254b42017-11-01 15:08:12 +010067 # Include the iLBC audio codec?
68 rtc_include_ilbc = true
69
mbonadei9aa3f0a2017-01-24 06:58:22 -080070 # Disable this to avoid building the Opus audio codec.
71 rtc_include_opus = true
72
minyue2e03c662017-02-01 17:31:11 -080073 # Enable this if the Opus version upon which WebRTC is built supports direct
74 # encoding of 120 ms packets.
minyue-webrtc516711c2017-07-27 17:45:49 +020075 rtc_opus_support_120ms_ptime = true
minyue2e03c662017-02-01 17:31:11 -080076
mbonadei9aa3f0a2017-01-24 06:58:22 -080077 # Enable this to let the Opus audio codec change complexity on the fly.
78 rtc_opus_variable_complexity = false
79
mbonadei9aa3f0a2017-01-24 06:58:22 -080080 # Used to specify an external Jsoncpp include path when not compiling the
81 # library that comes with WebRTC (i.e. rtc_build_json == 0).
82 rtc_jsoncpp_root = "//third_party/jsoncpp/source/include"
83
84 # Used to specify an external OpenSSL include path when not compiling the
85 # library that comes with WebRTC (i.e. rtc_build_ssl == 0).
86 rtc_ssl_root = ""
87
88 # Selects fixed-point code where possible.
89 rtc_prefer_fixed_point = false
90
mbonadei9aa3f0a2017-01-24 06:58:22 -080091 # Enable when an external authentication mechanism is used for performing
92 # packet authentication for RTP packets instead of libsrtp.
93 rtc_enable_external_auth = build_with_chromium
94
95 # Selects whether debug dumps for the audio processing module
96 # should be generated.
97 apm_debug_dump = false
98
99 # Set this to true to enable BWE test logging.
100 rtc_enable_bwe_test_logging = false
101
Joachim Bauch93e91342017-12-07 01:25:53 +0100102 # Set this to false to skip building examples.
103 rtc_build_examples = true
104
105 # Set this to false to skip building tools.
106 rtc_build_tools = true
107
Joachim Bauch75f18fc2017-12-20 21:25:47 +0100108 # Set this to false to skip building code that requires X11.
109 rtc_use_x11 = use_x11
110
Tomas Popela318da512018-11-13 06:32:23 +0100111 # Set this to use PipeWire on the Wayland display server.
Tomas Popela762543f2018-12-12 14:37:51 +0100112 # By default it's only enabled on desktop Linux (excludes ChromeOS) and
113 # only when using the sysroot as PipeWire is not available in older and
114 # supported Ubuntu and Debian distributions.
115 rtc_use_pipewire = is_desktop_linux && use_sysroot
116
117 # Set this to link PipeWire directly instead of using the dlopen.
118 rtc_link_pipewire = false
Tomas Popela318da512018-11-13 06:32:23 +0100119
mbonadei9aa3f0a2017-01-24 06:58:22 -0800120 # Enable to use the Mozilla internal settings.
121 build_with_mozilla = false
122
henrika883d00f2018-03-16 10:09:49 +0100123 # Enable use of Android AAudio which requires Android SDK 26 or above and
124 # NDK r16 or above.
125 rtc_enable_android_aaudio = false
126
mbonadei9aa3f0a2017-01-24 06:58:22 -0800127 # Link-Time Optimizations.
128 # Executes code generation at link-time instead of compile-time.
129 # https://gcc.gnu.org/wiki/LinkTimeOptimization
130 rtc_use_lto = false
131
132 # Set to "func", "block", "edge" for coverage generation.
133 # At unit test runtime set UBSAN_OPTIONS="coverage=1".
134 # It is recommend to set include_examples=0.
135 # Use llvm's sancov -html-report for human readable reports.
136 # See http://clang.llvm.org/docs/SanitizerCoverage.html .
137 rtc_sanitize_coverage = ""
138
mbonadei9aa3f0a2017-01-24 06:58:22 -0800139 if (current_cpu == "arm" || current_cpu == "arm64") {
140 rtc_prefer_fixed_point = true
141 }
142
mbonadei9aa3f0a2017-01-24 06:58:22 -0800143 # Determines whether NEON code will be built.
144 rtc_build_with_neon =
145 (current_cpu == "arm" && arm_use_neon) || current_cpu == "arm64"
146
147 # Enable this to build OpenH264 encoder/FFmpeg decoder. This is supported on
148 # all platforms except Android and iOS. Because FFmpeg can be built
149 # with/without H.264 support, |ffmpeg_branding| has to separately be set to a
150 # value that includes H.264, for example "Chrome". If FFmpeg is built without
Sergey Silkinfe288eb2018-06-25 16:22:38 +0200151 # H.264, compilation succeeds but |H264DecoderImpl| fails to initialize.
mbonadei9aa3f0a2017-01-24 06:58:22 -0800152 # CHECK THE OPENH264, FFMPEG AND H.264 LICENSES/PATENTS BEFORE BUILDING.
153 # http://www.openh264.org, https://www.ffmpeg.org/
Mirko Bonadeiee0a85c2019-01-15 10:47:18 +0100154 #
155 # Enabling H264 when building with MSVC is currently not supported, see
156 # bugs.webrtc.org/9213#c13 for more info.
157 rtc_use_h264 =
158 proprietary_codecs && !is_android && !is_ios && !(is_win && !is_clang)
mbonadei9aa3f0a2017-01-24 06:58:22 -0800159
mbonadei9aa3f0a2017-01-24 06:58:22 -0800160 # By default, use normal platform audio support or dummy audio, but don't
161 # use file-based audio playout and record.
162 rtc_use_dummy_audio_file_devices = false
163
henrika7be78832017-06-13 17:34:16 +0200164 # When set to true, replace the audio output with a sinus tone at 440Hz.
165 # The ADM will ask for audio data from WebRTC but instead of reading real
166 # audio samples from NetEQ, a sinus tone will be generated and replace the
167 # real audio samples.
168 rtc_audio_device_plays_sinus_tone = false
169
Anders Carlsson358f2e02018-06-04 10:24:37 +0200170 if (is_ios) {
171 # Build broadcast extension in AppRTCMobile for iOS. This results in the
172 # binary only running on iOS 11+, which is why it is disabled by default.
173 rtc_apprtcmobile_broadcast_extension = false
174 }
Anders Carlsson7bca8ca2018-08-30 09:30:29 +0200175
176 # Determines whether Metal is available on iOS/macOS.
177 rtc_use_metal_rendering = is_mac || (is_ios && current_cpu == "arm64")
Jiawei Ou08745302019-02-12 11:36:13 -0800178
179 # When set to false, builtin audio encoder/decoder factories and all the
180 # audio codecs they depend on will not be included in libwebrtc.{a|lib}
181 # (they will still be included in libjingle_peerconnection_so.so and
182 # WebRTC.framework)
183 rtc_include_builtin_audio_codecs = true
184
185 # When set to false, builtin video encoder/decoder factories and all the
186 # video codecs they depends on will not be included in libwebrtc.{a|lib}
187 # (they will still be included in libjingle_peerconnection_so.so and
188 # WebRTC.framework)
189 rtc_include_builtin_video_codecs = true
Dan Minor9c686132018-01-15 10:20:00 -0500190}
mbonadei9aa3f0a2017-01-24 06:58:22 -0800191
Dan Minor9c686132018-01-15 10:20:00 -0500192if (!build_with_mozilla) {
193 import("//testing/test.gni")
mbonadei9aa3f0a2017-01-24 06:58:22 -0800194}
195
196# A second declare_args block, so that declarations within it can
197# depend on the possibly overridden variables in the first
198# declare_args block.
199declare_args() {
Dan Minor9c686132018-01-15 10:20:00 -0500200 # Enables the use of protocol buffers for debug recordings.
201 rtc_enable_protobuf = !build_with_mozilla
202
203 # Set this to disable building with support for SCTP data channels.
204 rtc_enable_sctp = !build_with_mozilla
205
206 # Disable these to not build components which can be externally provided.
207 rtc_build_json = !build_with_mozilla
208 rtc_build_libsrtp = !build_with_mozilla
209 rtc_build_libvpx = !build_with_mozilla
210 rtc_libvpx_build_vp9 = !build_with_mozilla
Dan Minor9c686132018-01-15 10:20:00 -0500211 rtc_build_opus = !build_with_mozilla
212 rtc_build_ssl = !build_with_mozilla
213 rtc_build_usrsctp = !build_with_mozilla
214
215 # Enable libevent task queues on platforms that support it.
Wez00cecb92018-02-09 10:41:00 -0800216 if (is_win || is_mac || is_ios || is_nacl || is_fuchsia) {
Dan Minor9c686132018-01-15 10:20:00 -0500217 rtc_enable_libevent = false
218 rtc_build_libevent = false
219 } else {
220 rtc_enable_libevent = true
221 rtc_build_libevent = !build_with_mozilla
222 }
223
Dan Minor9c686132018-01-15 10:20:00 -0500224 # Build sources requiring GTK. NOTICE: This is not present in Chrome OS
225 # build environments, even if available for Chromium builds.
226 rtc_use_gtk = !build_with_chromium && !build_with_mozilla
227
mbonadei9aa3f0a2017-01-24 06:58:22 -0800228 # Excluded in Chromium since its prerequisites don't require Pulse Audio.
229 rtc_include_pulse_audio = !build_with_chromium
230
231 # Chromium uses its own IO handling, so the internal ADM is only built for
232 # standalone WebRTC.
233 rtc_include_internal_audio_device = !build_with_chromium
234
235 # Include tests in standalone checkout.
Dan Minor9c686132018-01-15 10:20:00 -0500236 rtc_include_tests = !build_with_chromium && !build_with_mozilla
mbonadei9aa3f0a2017-01-24 06:58:22 -0800237}
238
239# Make it possible to provide custom locations for some libraries (move these
240# up into declare_args should we need to actually use them for the GN build).
241rtc_libvpx_dir = "//third_party/libvpx"
mbonadei9aa3f0a2017-01-24 06:58:22 -0800242rtc_opus_dir = "//third_party/opus"
243
244# Desktop capturer is supported only on Windows, OSX and Linux.
Robin Raymondce1b1402018-11-22 20:10:11 -0500245rtc_desktop_capture_supported = (is_win && current_os != "winuwp") || is_mac ||
246 (is_linux && (rtc_use_x11 || rtc_use_pipewire))
mbonadei9aa3f0a2017-01-24 06:58:22 -0800247
248###############################################################################
249# Templates
250#
251
Mirko Bonadei92ea95e2017-09-15 06:47:31 +0200252# Points to // in webrtc stand-alone or to //third_party/webrtc/ in
mbonadei9aa3f0a2017-01-24 06:58:22 -0800253# chromium.
254# We need absolute paths for all configs in templates as they are shared in
255# different subdirectories.
256webrtc_root = get_path_info(".", "abspath")
257
258# Global configuration that should be applied to all WebRTC targets.
259# You normally shouldn't need to include this in your target as it's
260# automatically included when using the rtc_* templates.
261# It sets defines, include paths and compilation warnings accordingly,
262# both for WebRTC stand-alone builds and for the scenario when WebRTC
263# native code is built as part of Chromium.
Will Harrisfc173d02018-08-29 13:56:00 -0700264rtc_common_configs = [
265 webrtc_root + ":common_config",
266 "//build/config/compiler:no_size_t_to_int_warning",
267]
mbonadei9aa3f0a2017-01-24 06:58:22 -0800268
kthelgasonc0977102017-04-24 00:57:16 -0700269if (is_mac || is_ios) {
270 rtc_common_configs += [ "//build/config/compiler:enable_arc" ]
271}
272
mbonadei9aa3f0a2017-01-24 06:58:22 -0800273# Global public configuration that should be applied to all WebRTC targets. You
274# normally shouldn't need to include this in your target as it's automatically
275# included when using the rtc_* templates. It set the defines, include paths and
276# compilation warnings that should be propagated to dependents of the targets
277# depending on the target having this config.
278rtc_common_inherited_config = webrtc_root + ":common_inherited_config"
279
280# Common configs to remove or add in all rtc targets.
281rtc_remove_configs = []
Mirko Bonadeifc52b912019-03-01 10:32:56 +0100282if (!build_with_chromium && is_clang) {
283 rtc_remove_configs += [ "//build/config/clang:find_bad_constructs" ]
284}
mbonadei9aa3f0a2017-01-24 06:58:22 -0800285rtc_add_configs = rtc_common_configs
Mirko Bonadei96ede162018-09-06 13:45:44 +0200286rtc_prod_configs = [ webrtc_root + ":rtc_prod_config" ]
Mirko Bonadei32ce18c2018-09-18 13:15:54 +0200287rtc_library_impl_config = [ webrtc_root + ":library_impl_config" ]
mbonadei9aa3f0a2017-01-24 06:58:22 -0800288
289set_defaults("rtc_test") {
290 configs = rtc_add_configs
291 suppressed_configs = []
292}
293
294set_defaults("rtc_source_set") {
295 configs = rtc_add_configs
296 suppressed_configs = []
297}
298
299set_defaults("rtc_executable") {
300 configs = rtc_add_configs
301 suppressed_configs = []
302}
303
304set_defaults("rtc_static_library") {
305 configs = rtc_add_configs
306 suppressed_configs = []
307}
308
309set_defaults("rtc_shared_library") {
310 configs = rtc_add_configs
311 suppressed_configs = []
312}
313
Per Kjellandera7f2d842018-01-10 15:54:53 +0000314webrtc_default_visibility = [ webrtc_root + "/*" ]
315if (build_with_chromium) {
316 # Allow Chromium's WebRTC overrides targets to bypass the regular
317 # visibility restrictions.
318 webrtc_default_visibility += [ webrtc_root + "/../webrtc_overrides/*" ]
319}
320
Karl Wibergbb23c832018-04-22 19:55:00 +0200321# ---- Poisons ----
322#
323# The general idea is that some targets declare that they contain some
324# kind of poison, which makes it impossible for other targets to
325# depend on them (even transitively) unless they declare themselves
326# immune to that particular type of poison.
327#
328# Targets that *contain* poison of type foo should contain the line
329#
330# poisonous = [ "foo" ]
331#
332# and targets that *are immune but arent't themselves poisonous*
333# should contain
334#
335# allow_poison = [ "foo" ]
336#
337# This useful in cases where we have some large target or set of
338# targets and want to ensure that most other targets do not
339# transitively depend on them. For example, almost no high-level
340# target should depend on the audio codecs, since we want WebRTC users
341# to be able to inject any subset of them and actually end up with a
342# binary that doesn't include the codecs they didn't inject.
343#
344# Test-only targets (`testonly` set to true) and non-public targets
345# (`visibility` not containing "*") are automatically immune to all
346# types of poison.
347#
348# Here's the complete list of all types of poison. It must be kept in
349# 1:1 correspondence with the set of //:poison_* targets.
350#
351all_poison_types = [
352 # Encoders and decoders for specific audio codecs such as Opus and iSAC.
353 "audio_codecs",
Anders Carlsson1f433e42018-04-24 16:39:05 +0200354
355 # Software video codecs (VP8 and VP9 through libvpx).
356 "software_video_codecs",
Karl Wibergbb23c832018-04-22 19:55:00 +0200357]
358
Mirko Bonadei9a89a492018-05-29 14:22:32 +0000359absl_include_config = "//third_party/abseil-cpp:absl_include_config"
360absl_define_config = "//third_party/abseil-cpp:absl_define_config"
361
mbonadei9aa3f0a2017-01-24 06:58:22 -0800362template("rtc_test") {
363 test(target_name) {
364 forward_variables_from(invoker,
365 "*",
366 [
367 "configs",
368 "public_configs",
369 "suppressed_configs",
Karl Wiberg138d4ac2017-10-16 11:16:19 +0200370 "visibility",
mbonadei9aa3f0a2017-01-24 06:58:22 -0800371 ])
Mirko Bonadeidd411942017-11-21 15:35:27 +0100372
373 # Always override to public because when target_os is Android the `test`
374 # template can override it to [ "*" ] and we want to avoid conditional
375 # visibility.
Mirko Bonadei21558812017-11-21 12:47:34 +0100376 visibility = [ "*" ]
mbonadei9aa3f0a2017-01-24 06:58:22 -0800377 configs += invoker.configs
378 configs -= rtc_remove_configs
379 configs -= invoker.suppressed_configs
Mirko Bonadei9a89a492018-05-29 14:22:32 +0000380 public_configs = [
381 rtc_common_inherited_config,
382 absl_include_config,
383 absl_define_config,
384 ]
mbonadei9aa3f0a2017-01-24 06:58:22 -0800385 if (defined(invoker.public_configs)) {
386 public_configs += invoker.public_configs
387 }
sakald7fdb802017-05-26 01:51:53 -0700388 if (!build_with_chromium && is_android) {
Jianjun Zhu037f3e42017-08-15 21:48:37 +0800389 android_manifest = webrtc_root + "test/android/AndroidManifest.xml"
390 deps += [ webrtc_root + "test:native_test_java" ]
sakald7fdb802017-05-26 01:51:53 -0700391 }
mbonadei9aa3f0a2017-01-24 06:58:22 -0800392 }
393}
394
395template("rtc_source_set") {
396 source_set(target_name) {
397 forward_variables_from(invoker,
398 "*",
399 [
400 "configs",
401 "public_configs",
402 "suppressed_configs",
Karl Wiberg138d4ac2017-10-16 11:16:19 +0200403 "visibility",
mbonadei9aa3f0a2017-01-24 06:58:22 -0800404 ])
Karl Wiberg138d4ac2017-10-16 11:16:19 +0200405 forward_variables_from(invoker, [ "visibility" ])
Per Kjellandera7f2d842018-01-10 15:54:53 +0000406 if (!defined(visibility)) {
407 visibility = webrtc_default_visibility
408 }
Karl Wibergbb23c832018-04-22 19:55:00 +0200409
410 # What's your poison?
411 if (defined(testonly) && testonly) {
412 assert(!defined(poisonous))
413 assert(!defined(allow_poison))
414 } else {
415 if (!defined(poisonous)) {
416 poisonous = []
417 }
418 if (!defined(allow_poison)) {
419 allow_poison = []
420 }
421 if (!defined(assert_no_deps)) {
422 assert_no_deps = []
423 }
424 if (!defined(deps)) {
425 deps = []
426 }
427 foreach(p, poisonous) {
428 deps += [ webrtc_root + ":poison_" + p ]
429 }
430 foreach(poison_type, all_poison_types) {
431 allow_dep = true
432 foreach(v, visibility) {
433 if (v == "*") {
434 allow_dep = false
435 }
436 }
437 foreach(p, allow_poison + poisonous) {
438 if (p == poison_type) {
439 allow_dep = true
440 }
441 }
442 if (!allow_dep) {
443 assert_no_deps += [ webrtc_root + ":poison_" + poison_type ]
444 }
445 }
446 }
447
Mirko Bonadei96ede162018-09-06 13:45:44 +0200448 if (!defined(testonly) || !testonly) {
449 configs += rtc_prod_configs
450 }
451
mbonadei9aa3f0a2017-01-24 06:58:22 -0800452 configs += invoker.configs
Mirko Bonadei32ce18c2018-09-18 13:15:54 +0200453 configs += rtc_library_impl_config
mbonadei9aa3f0a2017-01-24 06:58:22 -0800454 configs -= rtc_remove_configs
455 configs -= invoker.suppressed_configs
Mirko Bonadei9a89a492018-05-29 14:22:32 +0000456 public_configs = [
457 rtc_common_inherited_config,
458 absl_include_config,
459 absl_define_config,
460 ]
mbonadei9aa3f0a2017-01-24 06:58:22 -0800461 if (defined(invoker.public_configs)) {
462 public_configs += invoker.public_configs
463 }
464 }
465}
466
467template("rtc_executable") {
468 executable(target_name) {
469 forward_variables_from(invoker,
470 "*",
471 [
472 "deps",
473 "configs",
474 "public_configs",
475 "suppressed_configs",
Karl Wiberg138d4ac2017-10-16 11:16:19 +0200476 "visibility",
mbonadei9aa3f0a2017-01-24 06:58:22 -0800477 ])
Karl Wiberg138d4ac2017-10-16 11:16:19 +0200478 forward_variables_from(invoker, [ "visibility" ])
Per Kjellandera7f2d842018-01-10 15:54:53 +0000479 if (!defined(visibility)) {
480 visibility = webrtc_default_visibility
481 }
mbonadei9aa3f0a2017-01-24 06:58:22 -0800482 configs += invoker.configs
483 configs -= rtc_remove_configs
484 configs -= invoker.suppressed_configs
Tom Anderson9614a312018-06-11 15:10:34 -0700485 deps = invoker.deps
perkj650fdae2017-08-25 05:00:11 -0700486
Mirko Bonadei9a89a492018-05-29 14:22:32 +0000487 public_configs = [
488 rtc_common_inherited_config,
489 absl_include_config,
490 absl_define_config,
491 ]
mbonadei9aa3f0a2017-01-24 06:58:22 -0800492 if (defined(invoker.public_configs)) {
493 public_configs += invoker.public_configs
494 }
Mirko Bonadei9427f482018-08-28 14:39:27 +0200495 if (is_win) {
496 deps += [
497 # Give executables the default manifest on Windows (a no-op elsewhere).
498 "//build/win:default_exe_manifest",
499 ]
500 }
mbonadei9aa3f0a2017-01-24 06:58:22 -0800501 }
502}
503
504template("rtc_static_library") {
505 static_library(target_name) {
506 forward_variables_from(invoker,
507 "*",
508 [
509 "configs",
510 "public_configs",
511 "suppressed_configs",
Karl Wiberg138d4ac2017-10-16 11:16:19 +0200512 "visibility",
mbonadei9aa3f0a2017-01-24 06:58:22 -0800513 ])
Karl Wiberg138d4ac2017-10-16 11:16:19 +0200514 forward_variables_from(invoker, [ "visibility" ])
Per Kjellandera7f2d842018-01-10 15:54:53 +0000515 if (!defined(visibility)) {
516 visibility = webrtc_default_visibility
517 }
Karl Wibergbb23c832018-04-22 19:55:00 +0200518
519 # What's your poison?
520 if (defined(testonly) && testonly) {
521 assert(!defined(poisonous))
522 assert(!defined(allow_poison))
523 } else {
524 if (!defined(poisonous)) {
525 poisonous = []
526 }
527 if (!defined(allow_poison)) {
528 allow_poison = []
529 }
530 if (!defined(assert_no_deps)) {
531 assert_no_deps = []
532 }
533 if (!defined(deps)) {
534 deps = []
535 }
536 foreach(p, poisonous) {
537 deps += [ webrtc_root + ":poison_" + p ]
538 }
539 foreach(poison_type, all_poison_types) {
540 allow_dep = true
541 foreach(v, visibility) {
542 if (v == "*") {
543 allow_dep = false
544 }
545 }
546 foreach(p, allow_poison + poisonous) {
547 if (p == poison_type) {
548 allow_dep = true
549 }
550 }
551 if (!allow_dep) {
552 assert_no_deps += [ webrtc_root + ":poison_" + poison_type ]
553 }
554 }
555 }
556
Mirko Bonadei96ede162018-09-06 13:45:44 +0200557 if (!defined(testonly) || !testonly) {
558 configs += rtc_prod_configs
559 }
560
mbonadei9aa3f0a2017-01-24 06:58:22 -0800561 configs += invoker.configs
Mirko Bonadei32ce18c2018-09-18 13:15:54 +0200562 configs += rtc_library_impl_config
mbonadei9aa3f0a2017-01-24 06:58:22 -0800563 configs -= rtc_remove_configs
564 configs -= invoker.suppressed_configs
Mirko Bonadei9a89a492018-05-29 14:22:32 +0000565 public_configs = [
566 rtc_common_inherited_config,
567 absl_include_config,
568 absl_define_config,
569 ]
mbonadei9aa3f0a2017-01-24 06:58:22 -0800570 if (defined(invoker.public_configs)) {
571 public_configs += invoker.public_configs
572 }
573 }
574}
575
576template("rtc_shared_library") {
577 shared_library(target_name) {
578 forward_variables_from(invoker,
579 "*",
580 [
581 "configs",
582 "public_configs",
583 "suppressed_configs",
Karl Wiberg138d4ac2017-10-16 11:16:19 +0200584 "visibility",
mbonadei9aa3f0a2017-01-24 06:58:22 -0800585 ])
Karl Wiberg138d4ac2017-10-16 11:16:19 +0200586 forward_variables_from(invoker, [ "visibility" ])
Per Kjellandera7f2d842018-01-10 15:54:53 +0000587 if (!defined(visibility)) {
588 visibility = webrtc_default_visibility
589 }
Karl Wibergbb23c832018-04-22 19:55:00 +0200590
591 # What's your poison?
592 if (defined(testonly) && testonly) {
593 assert(!defined(poisonous))
594 assert(!defined(allow_poison))
595 } else {
596 if (!defined(poisonous)) {
597 poisonous = []
598 }
599 if (!defined(allow_poison)) {
600 allow_poison = []
601 }
602 if (!defined(assert_no_deps)) {
603 assert_no_deps = []
604 }
605 if (!defined(deps)) {
606 deps = []
607 }
608 foreach(p, poisonous) {
609 deps += [ webrtc_root + ":poison_" + p ]
610 }
611 foreach(poison_type, all_poison_types) {
612 allow_dep = true
613 foreach(v, visibility) {
614 if (v == "*") {
615 allow_dep = false
616 }
617 }
618 foreach(p, allow_poison + poisonous) {
619 if (p == poison_type) {
620 allow_dep = true
621 }
622 }
623 if (!allow_dep) {
624 assert_no_deps += [ webrtc_root + ":poison_" + poison_type ]
625 }
626 }
627 }
628
mbonadei9aa3f0a2017-01-24 06:58:22 -0800629 configs += invoker.configs
630 configs -= rtc_remove_configs
631 configs -= invoker.suppressed_configs
Mirko Bonadei9a89a492018-05-29 14:22:32 +0000632 public_configs = [
633 rtc_common_inherited_config,
634 absl_include_config,
635 absl_define_config,
636 ]
mbonadei9aa3f0a2017-01-24 06:58:22 -0800637 if (defined(invoker.public_configs)) {
638 public_configs += invoker.public_configs
639 }
640 }
641}
kthelgason4065a572017-02-14 04:58:56 -0800642
643if (is_ios) {
644 set_defaults("rtc_ios_xctest_test") {
645 configs = rtc_add_configs
646 suppressed_configs = []
647 }
648
649 template("rtc_ios_xctest_test") {
650 ios_xctest_test(target_name) {
651 forward_variables_from(invoker,
652 "*",
653 [
654 "configs",
655 "public_configs",
656 "suppressed_configs",
Karl Wiberg138d4ac2017-10-16 11:16:19 +0200657 "visibility",
kthelgason4065a572017-02-14 04:58:56 -0800658 ])
Karl Wiberg138d4ac2017-10-16 11:16:19 +0200659 forward_variables_from(invoker, [ "visibility" ])
Per Kjellandera7f2d842018-01-10 15:54:53 +0000660 if (!defined(visibility)) {
661 visibility = webrtc_default_visibility
662 }
kthelgason4065a572017-02-14 04:58:56 -0800663 configs += invoker.configs
664 configs -= rtc_remove_configs
665 configs -= invoker.suppressed_configs
666 public_configs = [ rtc_common_inherited_config ]
667 if (defined(invoker.public_configs)) {
668 public_configs += invoker.public_configs
669 }
670 }
671 }
Anders Carlssondc6b4772018-01-15 13:31:03 +0100672
Joel Sutherlandd2fb1bf2018-10-02 16:08:25 -0400673 # TODO: Generate module.modulemap file to enable use in Swift
674 # projects. See "mac_framework_bundle_with_umbrella_header".
Anders Carlssondc6b4772018-01-15 13:31:03 +0100675 template("ios_framework_bundle_with_umbrella_header") {
676 forward_variables_from(invoker, [ "output_name" ])
677 umbrella_header_path =
678 "$target_gen_dir/$output_name.framework/Headers/$output_name.h"
679
680 ios_framework_bundle(target_name) {
681 forward_variables_from(invoker, "*", [])
682
683 deps += [ ":copy_umbrella_header_$target_name" ]
684 }
685
686 action("umbrella_header_$target_name") {
687 forward_variables_from(invoker, [ "public_headers" ])
688
689 script = "//tools_webrtc/ios/generate_umbrella_header.py"
690
691 outputs = [
692 umbrella_header_path,
693 ]
694 args = [
695 "--out",
696 rebase_path(umbrella_header_path, root_build_dir),
697 "--sources",
Anders Carlsson7bca8ca2018-08-30 09:30:29 +0200698 ] + public_headers
Anders Carlssondc6b4772018-01-15 13:31:03 +0100699 }
700
701 copy("copy_umbrella_header_$target_name") {
702 sources = [
703 umbrella_header_path,
704 ]
705 outputs = [
706 "$root_out_dir/$output_name.framework/Headers/$output_name.h",
707 ]
708
709 deps = [
710 ":umbrella_header_$target_name",
711 ]
712 }
713 }
714
715 set_defaults("ios_framework_bundle_with_umbrella_header") {
716 configs = default_shared_library_configs
717 }
kthelgason4065a572017-02-14 04:58:56 -0800718}
Mirko Bonadeifbb3b7d2017-11-07 15:36:33 +0000719
Anders Carlsson37bbf792018-09-05 16:29:27 +0200720if (is_mac) {
721 template("mac_framework_bundle_with_umbrella_header") {
722 forward_variables_from(invoker, [ "output_name" ])
Anders Carlsson95c56ee2018-09-06 15:48:17 +0200723 this_target_name = target_name
724 umbrella_header_path = "$target_gen_dir/umbrella_header/$output_name.h"
Joel Sutherlandd2fb1bf2018-10-02 16:08:25 -0400725 modulemap_path = "$target_gen_dir/Modules/module.modulemap"
Anders Carlsson37bbf792018-09-05 16:29:27 +0200726
727 mac_framework_bundle(target_name) {
Thomas Anderson6fde78c2019-01-23 10:40:29 -0800728 forward_variables_from(invoker, "*", [ "configs" ])
729 if (defined(invoker.configs)) {
730 configs += invoker.configs
731 }
Anders Carlsson37bbf792018-09-05 16:29:27 +0200732
733 framework_version = "A"
Joel Sutherlandd2fb1bf2018-10-02 16:08:25 -0400734 framework_contents = [
735 "Headers",
736 "Modules",
737 "Resources",
738 ]
Anders Carlsson37bbf792018-09-05 16:29:27 +0200739
740 ldflags = [
741 "-all_load",
742 "-install_name",
743 "@rpath/$output_name.framework/$output_name",
744 ]
745
746 deps += [
Anders Carlsson95c56ee2018-09-06 15:48:17 +0200747 ":copy_framework_headers_$this_target_name",
Joel Sutherlandd2fb1bf2018-10-02 16:08:25 -0400748 ":copy_modulemap_$this_target_name",
Anders Carlsson95c56ee2018-09-06 15:48:17 +0200749 ":copy_umbrella_header_$this_target_name",
Joel Sutherlandd2fb1bf2018-10-02 16:08:25 -0400750 ":modulemap_$this_target_name",
Anders Carlsson95c56ee2018-09-06 15:48:17 +0200751 ":umbrella_header_$this_target_name",
Anders Carlsson37bbf792018-09-05 16:29:27 +0200752 ]
753 }
754
Anders Carlsson95c56ee2018-09-06 15:48:17 +0200755 bundle_data("copy_framework_headers_$this_target_name") {
Anders Carlsson37bbf792018-09-05 16:29:27 +0200756 forward_variables_from(invoker, [ "sources" ])
757
758 outputs = [
Anders Carlsson95c56ee2018-09-06 15:48:17 +0200759 "{{bundle_contents_dir}}/Headers/{{source_file_part}}",
Anders Carlsson37bbf792018-09-05 16:29:27 +0200760 ]
761 }
762
Joel Sutherlandd2fb1bf2018-10-02 16:08:25 -0400763 action("modulemap_$this_target_name") {
764 script = "//tools_webrtc/ios/generate_modulemap.py"
765 args = [
766 "--out",
767 rebase_path(modulemap_path, root_build_dir),
768 "--name",
769 output_name,
770 ]
771 outputs = [
772 modulemap_path,
773 ]
774 }
775
776 bundle_data("copy_modulemap_$this_target_name") {
777 sources = [
778 modulemap_path,
779 ]
780 outputs = [
781 "{{bundle_contents_dir}}/Modules/module.modulemap",
782 ]
783 deps = [
784 ":modulemap_$this_target_name",
785 ]
786 }
787
Anders Carlsson95c56ee2018-09-06 15:48:17 +0200788 action("umbrella_header_$this_target_name") {
Anders Carlsson37bbf792018-09-05 16:29:27 +0200789 forward_variables_from(invoker, [ "sources" ])
790
791 script = "//tools_webrtc/ios/generate_umbrella_header.py"
792
793 outputs = [
794 umbrella_header_path,
795 ]
796 args = [
797 "--out",
798 rebase_path(umbrella_header_path, root_build_dir),
799 "--sources",
800 ] + sources
801 }
802
Anders Carlsson95c56ee2018-09-06 15:48:17 +0200803 bundle_data("copy_umbrella_header_$this_target_name") {
Anders Carlsson37bbf792018-09-05 16:29:27 +0200804 sources = [
805 umbrella_header_path,
806 ]
807 outputs = [
Anders Carlsson95c56ee2018-09-06 15:48:17 +0200808 "{{bundle_contents_dir}}/Headers/$output_name.h",
Anders Carlsson37bbf792018-09-05 16:29:27 +0200809 ]
810
811 deps = [
Anders Carlsson95c56ee2018-09-06 15:48:17 +0200812 ":umbrella_header_$this_target_name",
Anders Carlsson37bbf792018-09-05 16:29:27 +0200813 ]
814 }
815 }
816}
817
Mirko Bonadeifbb3b7d2017-11-07 15:36:33 +0000818if (is_android) {
819 template("rtc_android_library") {
820 android_library(target_name) {
821 forward_variables_from(invoker,
822 "*",
823 [
824 "configs",
825 "public_configs",
826 "suppressed_configs",
827 "visibility",
828 ])
829
Oleh Prypin05aee742018-11-23 17:29:44 +0100830 errorprone_args = []
Sami Kalliomäkie7fac682018-03-20 16:32:49 +0100831
Mirko Bonadeifbb3b7d2017-11-07 15:36:33 +0000832 # Treat warnings as errors.
Oleh Prypin05aee742018-11-23 17:29:44 +0100833 errorprone_args += [ "-Werror" ]
Sami Kalliomäkie7fac682018-03-20 16:32:49 +0100834
Sami Kalliomäki68d58602019-01-24 12:56:12 +0100835 # WebRTC supports API level 16 while Chromium only supports 19.
836 # (the manifest defines minimum supported SDK version)
837 if (defined(invoker.android_manifest_for_lint)) {
838 # Custom manifest defined by the target, use that one.
839 android_manifest_for_lint = invoker.android_manifest_for_lint
840 } else {
841 # Default manifest for WebRTC.
842 android_manifest_for_lint = "//sdk/android/AndroidManifest.xml"
843 }
844
Sami Kalliomäkidc526512018-03-27 17:07:27 +0200845 # TODO(crbug.com/824679): Find out why this fails in Chromium
846 if (!build_with_chromium) {
Oleh Prypin05aee742018-11-23 17:29:44 +0100847 errorprone_args += [
Sami Kalliomäkidc526512018-03-27 17:07:27 +0200848 "-Xep:ParameterNotNullable:ERROR",
849 "-Xep:FieldMissingNullable:ERROR",
850 "-Xep:ReturnMissingNullable:ERROR",
851 ]
852 }
853
Sami Kalliomäkie7fac682018-03-20 16:32:49 +0100854 # Add any arguments defined by the invoker.
Oleh Prypin05aee742018-11-23 17:29:44 +0100855 if (defined(invoker.errorprone_args)) {
856 errorprone_args += invoker.errorprone_args
Sami Kalliomäkie7fac682018-03-20 16:32:49 +0100857 }
Mirko Bonadeifbb3b7d2017-11-07 15:36:33 +0000858
Sami Kalliomäkidc526512018-03-27 17:07:27 +0200859 if (!defined(deps)) {
860 deps = []
861 }
Sami Kalliomäkidc526512018-03-27 17:07:27 +0200862
Mirko Bonadeifbb3b7d2017-11-07 15:36:33 +0000863 no_build_hooks = true
864 }
865 }
866
867 template("rtc_android_apk") {
868 android_apk(target_name) {
869 forward_variables_from(invoker,
870 "*",
871 [
872 "configs",
873 "public_configs",
874 "suppressed_configs",
875 "visibility",
876 ])
877
878 # Treat warnings as errors.
Oleh Prypin05aee742018-11-23 17:29:44 +0100879 errorprone_args = [ "-Werror" ]
Mirko Bonadeifbb3b7d2017-11-07 15:36:33 +0000880
Sami Kalliomäkidc526512018-03-27 17:07:27 +0200881 # TODO(crbug.com/824679): Find out why this fails in Chromium
882 if (!build_with_chromium) {
Oleh Prypin05aee742018-11-23 17:29:44 +0100883 errorprone_args += [
Sami Kalliomäkidc526512018-03-27 17:07:27 +0200884 "-Xep:ParameterNotNullable:ERROR",
885 "-Xep:FieldMissingNullable:ERROR",
886 "-Xep:ReturnMissingNullable:ERROR",
887 ]
888 }
889
890 if (!defined(deps)) {
891 deps = []
892 }
Sami Kalliomäkidc526512018-03-27 17:07:27 +0200893
Mirko Bonadeifbb3b7d2017-11-07 15:36:33 +0000894 no_build_hooks = true
895 }
896 }
897
898 template("rtc_instrumentation_test_apk") {
899 instrumentation_test_apk(target_name) {
900 forward_variables_from(invoker,
901 "*",
902 [
903 "configs",
904 "public_configs",
905 "suppressed_configs",
906 "visibility",
907 ])
908
909 # Treat warnings as errors.
Oleh Prypin05aee742018-11-23 17:29:44 +0100910 errorprone_args = [ "-Werror" ]
Mirko Bonadeifbb3b7d2017-11-07 15:36:33 +0000911
Sami Kalliomäkidc526512018-03-27 17:07:27 +0200912 # TODO(crbug.com/824679): Find out why this fails in Chromium
913 if (!build_with_chromium) {
Oleh Prypin05aee742018-11-23 17:29:44 +0100914 errorprone_args += [
Sami Kalliomäkidc526512018-03-27 17:07:27 +0200915 "-Xep:ParameterNotNullable:ERROR",
916 "-Xep:FieldMissingNullable:ERROR",
917 "-Xep:ReturnMissingNullable:ERROR",
918 ]
919 }
920
921 if (!defined(deps)) {
922 deps = []
923 }
Sami Kalliomäkidc526512018-03-27 17:07:27 +0200924
Mirko Bonadeifbb3b7d2017-11-07 15:36:33 +0000925 no_build_hooks = true
926 }
927 }
928}