BUILD.gn 616 B

123456789101112131415161718192021222324252627282930
  1. # Copyright 2018 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. source_set("browser") {
  5. sources = [
  6. "log_cleanup.cc",
  7. "log_cleanup.h",
  8. "text_log_list.cc",
  9. "text_log_list.h",
  10. ]
  11. deps = [
  12. "//base",
  13. "//components/upload_list",
  14. "//content/public/browser",
  15. ]
  16. }
  17. source_set("unit_tests") {
  18. testonly = true
  19. sources = [ "log_cleanup_unittest.cc" ]
  20. deps = [
  21. ":browser",
  22. "//base",
  23. "//base/test:test_support",
  24. "//content/test:test_support",
  25. "//testing/gtest",
  26. ]
  27. }