mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-13 13:50:40 +01:00

Bug: webrtc:10191 Change-Id: I7bdc97fd626da955b9194a9a0d8ed4f5aebddf66 Reviewed-on: https://webrtc-review.googlesource.com/c/118120 Reviewed-by: Niels Moller <nisse@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26315}
65 lines
1.7 KiB
Text
65 lines
1.7 KiB
Text
# Copyright (c) 2018 The WebRTC project authors. All Rights Reserved.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license
|
|
# that can be found in the LICENSE file in the root of the source
|
|
# tree. An additional intellectual property rights grant can be found
|
|
# in the file PATENTS. All contributing project authors may
|
|
# be found in the AUTHORS file in the root of the source tree.
|
|
|
|
import("../../webrtc.gni")
|
|
|
|
rtc_source_set("task_queue") {
|
|
visibility = [ "*" ]
|
|
public = [
|
|
"queued_task.h",
|
|
"task_queue_priority.h",
|
|
]
|
|
}
|
|
|
|
# TODO(bugs.webrtc.org/10191): Merge the target into task_queue target above
|
|
# when support for link-time injection is dropped.
|
|
rtc_source_set("task_queue_factory") {
|
|
visibility = [ "*" ]
|
|
public = [
|
|
"task_queue_base.h",
|
|
"task_queue_factory.h",
|
|
]
|
|
sources = [
|
|
"task_queue_base.cc",
|
|
]
|
|
|
|
deps = [
|
|
":task_queue",
|
|
"//third_party/abseil-cpp/absl/base:core_headers",
|
|
"//third_party/abseil-cpp/absl/strings",
|
|
]
|
|
}
|
|
|
|
rtc_source_set("default_task_queue_factory") {
|
|
# TODO(bugs.webrtc.org/10191): Make public when implemented for all
|
|
# supported platforms.
|
|
visibility = [ ":global_task_queue_factory" ]
|
|
sources = [
|
|
"default_task_queue_factory.cc",
|
|
"default_task_queue_factory.h",
|
|
]
|
|
deps = [
|
|
":task_queue_factory",
|
|
"../../rtc_base:checks",
|
|
]
|
|
}
|
|
|
|
rtc_source_set("global_task_queue_factory") {
|
|
# TODO(danilchap): Remove this target when task queue factory propagated to
|
|
# all components that create TaskQueues.
|
|
visibility = [ "*" ]
|
|
sources = [
|
|
"global_task_queue_factory.cc",
|
|
"global_task_queue_factory.h",
|
|
]
|
|
deps = [
|
|
":default_task_queue_factory",
|
|
":task_queue_factory",
|
|
"../../rtc_base:checks",
|
|
]
|
|
}
|