diff --git a/api/task_queue/BUILD.gn b/api/task_queue/BUILD.gn index b57069b1c0..1394648e5f 100644 --- a/api/task_queue/BUILD.gn +++ b/api/task_queue/BUILD.gn @@ -28,11 +28,6 @@ rtc_source_set("task_queue") { ] } -# TODO(danilchap): Remove this empty target when downstream project stop depending on it. -rtc_source_set("task_queue_factory") { - visibility = [ "*" ] -} - rtc_source_set("task_queue_test") { visibility = [ "*" ] testonly = true diff --git a/rtc_base/BUILD.gn b/rtc_base/BUILD.gn index 84a39ef32c..a396a63efe 100644 --- a/rtc_base/BUILD.gn +++ b/rtc_base/BUILD.gn @@ -483,10 +483,6 @@ rtc_source_set("rtc_task_queue") { ] } -rtc_source_set("rtc_task_queue_api") { - visibility = [ "*" ] -} - if (rtc_enable_libevent) { rtc_source_set("rtc_task_queue_libevent") { visibility = [ "../api/task_queue:default_task_queue_factory" ] diff --git a/webrtc.gni b/webrtc.gni index 61bff0a9fe..3a89a9a9c7 100644 --- a/webrtc.gni +++ b/webrtc.gni @@ -136,11 +136,6 @@ declare_args() { # See http://clang.llvm.org/docs/SanitizerCoverage.html . rtc_sanitize_coverage = "" - # Links a default implementation of task queues to targets - # that depend on the target rtc_task_queue. Set to false to - # use an external implementation. - rtc_link_task_queue_impl = true - if (current_cpu == "arm" || current_cpu == "arm64") { rtc_prefer_fixed_point = true } @@ -218,8 +213,6 @@ declare_args() { rtc_build_usrsctp = !build_with_mozilla # Enable libevent task queues on platforms that support it. - # rtc_link_task_queue_impl must be set to true for this to - # have an effect. if (is_win || is_mac || is_ios || is_nacl || is_fuchsia) { rtc_enable_libevent = false rtc_build_libevent = false