mirror of
https://github.com/mollyim/webrtc.git
synced 2025-05-15 06:40:43 +01:00

and move usages to webrtc::RefCountInterface This CL also moves more stuff to webrtc:: and adds backwards compatible aliases for them. Bug: webrtc:42225969 Change-Id: Iefb8542cff793bd8aa46bef8f2f3c66a1e979d07 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/353720 Reviewed-by: Florent Castelli <orphis@webrtc.org> Commit-Queue: Harald Alvestrand <hta@webrtc.org> Cr-Commit-Position: refs/heads/main@{#42446}
24 lines
709 B
Text
24 lines
709 B
Text
# Copyright(c) 2020 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("resource_adaptation_api") {
|
|
visibility = [ "*" ]
|
|
sources = [
|
|
"resource.cc",
|
|
"resource.h",
|
|
]
|
|
deps = [
|
|
"..:ref_count",
|
|
"../../api:scoped_refptr",
|
|
"../../rtc_base:checks",
|
|
"../../rtc_base:refcount",
|
|
"../../rtc_base/system:rtc_export",
|
|
]
|
|
}
|