2019-01-14 14:29:18 +01:00
|
|
|
# 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",
|
2019-01-17 13:07:25 +01:00
|
|
|
"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",
|
2019-01-21 13:52:59 +01:00
|
|
|
"task_queue_impl.cc",
|
|
|
|
|
"task_queue_impl.h",
|
2019-01-17 13:07:25 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
|
deps = [
|
|
|
|
|
":task_queue",
|
2019-01-21 13:52:59 +01:00
|
|
|
"../../rtc_base:checks",
|
|
|
|
|
"../../rtc_base:rtc_task_queue_api",
|
2019-01-17 13:07:25 +01:00
|
|
|
"//third_party/abseil-cpp/absl/base:core_headers",
|
|
|
|
|
"//third_party/abseil-cpp/absl/strings",
|
2019-01-14 14:29:18 +01:00
|
|
|
]
|
|
|
|
|
}
|
2019-01-18 10:09:40 +01:00
|
|
|
|
2019-01-22 18:15:37 +01:00
|
|
|
rtc_source_set("task_queue_test") {
|
|
|
|
|
visibility = [ "*" ]
|
|
|
|
|
testonly = true
|
|
|
|
|
sources = [
|
|
|
|
|
"task_queue_test.cc",
|
|
|
|
|
"task_queue_test.h",
|
|
|
|
|
]
|
|
|
|
|
deps = [
|
|
|
|
|
":task_queue",
|
|
|
|
|
":task_queue_factory",
|
|
|
|
|
"../../rtc_base:rtc_event",
|
|
|
|
|
"../../rtc_base:rtc_task_queue_api",
|
|
|
|
|
"../../rtc_base:timeutils",
|
|
|
|
|
"../../test:test_support",
|
|
|
|
|
"//third_party/abseil-cpp/absl/memory",
|
|
|
|
|
"//third_party/abseil-cpp/absl/strings",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-18 10:09:40 +01:00
|
|
|
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",
|
|
|
|
|
]
|
|
|
|
|
}
|
|
|
|
|
|
2019-01-21 13:52:59 +01:00
|
|
|
# Linking with global_task_queue_factory adds link-time implementation of the
|
|
|
|
|
# rtc::TaskQueue that allows run-time injection of the TaskQueue implementaion.
|
2019-01-18 10:09:40 +01:00
|
|
|
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",
|
2019-01-21 13:52:59 +01:00
|
|
|
|
|
|
|
|
# TODO(bugs.webrtc.org/10191): Move task_queue.cc to private build
|
|
|
|
|
# "rtc_task_queue" when "rtc_task_queue_api", "rtc_task_queue",
|
|
|
|
|
# and "rtc_task_queue_impl" can be joined.
|
|
|
|
|
"task_queue.cc",
|
2019-01-18 10:09:40 +01:00
|
|
|
]
|
|
|
|
|
deps = [
|
|
|
|
|
":default_task_queue_factory",
|
|
|
|
|
":task_queue_factory",
|
|
|
|
|
"../../rtc_base:checks",
|
2019-01-21 13:52:59 +01:00
|
|
|
"../../rtc_base:rtc_task_queue_api",
|
2019-01-18 10:09:40 +01:00
|
|
|
]
|
|
|
|
|
}
|