Bug: webrtc:15656 Change-Id: I6da85b8dbd22627d04a2f2605ce93d578b12bd4b Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/327560 Reviewed-by: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Danil Chapovalov <danilchap@webrtc.org> Reviewed-by: Harald Alvestrand <hta@webrtc.org> Cr-Commit-Position: refs/heads/main@{#41192}
21 lines
682 B
Plaintext
21 lines
682 B
Plaintext
# Copyright (c) 2023 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("environment") {
|
|
visibility = [ "*" ]
|
|
sources = [ "environment.h" ]
|
|
deps = [
|
|
"..:refcountedbase",
|
|
"..:scoped_refptr",
|
|
"../../rtc_base/system:rtc_export",
|
|
]
|
|
absl_deps = [ "//third_party/abseil-cpp/absl/base:nullability" ]
|
|
}
|