summaryrefslogtreecommitdiffstats
path: root/third_party/libwebrtc/api/BUILD.gn
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/libwebrtc/api/BUILD.gn')
-rw-r--r--third_party/libwebrtc/api/BUILD.gn25
1 files changed, 23 insertions, 2 deletions
diff --git a/third_party/libwebrtc/api/BUILD.gn b/third_party/libwebrtc/api/BUILD.gn
index 1628660c3c..4549c02b7a 100644
--- a/third_party/libwebrtc/api/BUILD.gn
+++ b/third_party/libwebrtc/api/BUILD.gn
@@ -301,7 +301,6 @@ if (!build_with_mozilla) {
visibility = [ "*" ]
cflags = []
sources = [
- "crypto_params.h",
"data_channel_interface.cc",
"data_channel_interface.h",
"jsep.cc",
@@ -361,6 +360,8 @@ if (!build_with_mozilla) {
":sequence_checker",
":turn_customizer",
"../call:rtp_interfaces",
+ "../p2p:connection",
+ "../p2p:port_allocator",
"../p2p:rtc_p2p",
"../pc:media_factory",
"../rtc_base:copy_on_write_buffer",
@@ -380,6 +381,7 @@ if (!build_with_mozilla) {
"neteq:neteq_api",
"rtc_event_log",
"task_queue",
+ "transport:bandwidth_estimation_settings",
"transport:bitrate_settings",
"transport:enums",
"transport:network_control",
@@ -806,7 +808,6 @@ rtc_source_set("rtc_stats_api") {
"stats/attribute.h",
"stats/rtc_stats.h",
"stats/rtc_stats_collector_callback.h",
- "stats/rtc_stats_member.h",
"stats/rtc_stats_report.h",
"stats/rtcstats_objects.h",
]
@@ -969,6 +970,11 @@ rtc_library("ice_transport_factory") {
":make_ref_counted",
":packet_socket_factory",
":scoped_refptr",
+ "../p2p:connection",
+ "../p2p:ice_transport_internal",
+ "../p2p:p2p_constants",
+ "../p2p:p2p_transport_channel",
+ "../p2p:port_allocator",
"../p2p:rtc_p2p",
"../rtc_base:threading",
"../rtc_base/system:rtc_export",
@@ -1181,6 +1187,16 @@ if (rtc_include_tests) {
]
}
+ rtc_library("mock_frame_transformer") {
+ visibility = [ "*" ]
+ testonly = true
+ sources = [ "test/mock_frame_transformer.h" ]
+ deps = [
+ ":frame_transformer_interface",
+ "../test:test_support",
+ ]
+ }
+
rtc_library("mock_encoder_selector") {
visibility = [ "*" ]
testonly = true
@@ -1379,6 +1395,7 @@ if (rtc_include_tests) {
deps = [
"../api/video_codecs:video_codecs_api",
"../test:test_support",
+ "environment",
]
}
@@ -1447,6 +1464,7 @@ if (rtc_include_tests) {
sources = [
"array_view_unittest.cc",
+ "candidate_unittest.cc",
"field_trials_unittest.cc",
"function_view_unittest.cc",
"rtc_error_unittest.cc",
@@ -1462,6 +1480,7 @@ if (rtc_include_tests) {
deps = [
":array_view",
+ ":candidate",
":create_time_controller",
":field_trials",
":field_trials_view",
@@ -1475,12 +1494,14 @@ if (rtc_include_tests) {
":scoped_refptr",
":sequence_checker",
":time_controller",
+ "../p2p:rtc_p2p",
"../rtc_base:buffer",
"../rtc_base:checks",
"../rtc_base:gunit_helpers",
"../rtc_base:platform_thread",
"../rtc_base:rtc_event",
"../rtc_base:rtc_task_queue",
+ "../rtc_base:ssl",
"../rtc_base:task_queue_for_test",
"../rtc_base/containers:flat_set",
"../rtc_base/task_utils:repeating_task",