Bug: webrtc:10191 Change-Id: Ia2fff34cb260d904f25f7263051695f1c004a53b Reviewed-on: https://webrtc-review.googlesource.com/c/117360 Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Reviewed-by: Karl Wiberg <kwiberg@webrtc.org> Cr-Commit-Position: refs/heads/master@{#26295}
37 lines
987 B
Plaintext
37 lines
987 B
Plaintext
# 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",
|
|
]
|
|
}
|