# Copyright 2018 The Chromium Authors. All rights reserved. # 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", "log_list.cc", "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", "//content/test:test_support", "//testing/gtest", ] }