This library is not expected to be used outside of WebRTC. Bug: None Change-Id: I35e864eccc2e4101255332372e0c27bb0c492586 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/293341 Reviewed-by: Harald Alvestrand <hta@webrtc.org> Auto-Submit: Mirko Bonadei <mbonadei@webrtc.org> Commit-Queue: Harald Alvestrand <hta@webrtc.org> Cr-Commit-Position: refs/heads/main@{#39322}
22 lines
635 B
Plaintext
22 lines
635 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_library("base64") {
|
|
sources = [
|
|
"base64.cc",
|
|
"base64.h",
|
|
]
|
|
deps = [
|
|
"../..:checks",
|
|
"../../system:rtc_export",
|
|
]
|
|
absl_deps = [ "//third_party/abseil-cpp/absl/strings" ]
|
|
}
|