chromium/components/webrtc_logging/browser/BUILD.gn

# Copyright 2018 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

source_set("browser") {
  sources = [
    "log_cleanup.cc",
    "log_cleanup.h",
    "text_log_list.cc",
    "text_log_list.h",
  ]

  deps = [
    "//base",
    "//components/upload_list",
    "//content/public/browser",
  ]
}

source_set("unit_tests") {
  testonly = true
  sources = [ "log_cleanup_unittest.cc" ]
  deps = [
    ":browser",
    "//base",
    "//base/test:test_support",
    "//content/test:test_support",
    "//testing/gtest",
  ]
}