1# Copyright (c) 2019 The WebRTC project authors. All Rights Reserved. 2# 3# Use of this source code is governed by a BSD-style license 4# that can be found in the LICENSE file in the root of the source 5# tree. An additional intellectual property rights grant can be found 6# in the file PATENTS. All contributing project authors may 7# be found in the AUTHORS file in the root of the source tree. 8 9import("../../webrtc.gni") 10 11rtc_library("log_writer") { 12 testonly = true 13 visibility = [ "*" ] 14 sources = [ 15 "file_log_writer.cc", 16 "file_log_writer.h", 17 "log_writer.cc", 18 "log_writer.h", 19 "memory_log_writer.cc", 20 "memory_log_writer.h", 21 ] 22 23 deps = [ 24 "../../api:libjingle_logging_api", 25 "../../rtc_base:checks", 26 "../../rtc_base:logging", 27 "../../rtc_base:rtc_base_tests_utils", 28 "../../rtc_base:stringutils", 29 "../../test:fileutils", 30 ] 31 absl_deps = [ "//third_party/abseil-cpp/absl/types:optional" ] 32} 33