BUILD.gn 712 B

123456789101112131415161718192021222324252627282930313233
  1. # Copyright 2015 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. static_library("upload_list") {
  5. sources = [
  6. "combining_upload_list.cc",
  7. "combining_upload_list.h",
  8. "crash_upload_list.cc",
  9. "crash_upload_list.h",
  10. "text_log_upload_list.cc",
  11. "text_log_upload_list.h",
  12. "upload_list.cc",
  13. "upload_list.h",
  14. ]
  15. deps = [ "//base" ]
  16. }
  17. source_set("unit_tests") {
  18. testonly = true
  19. sources = [
  20. "combining_upload_list_unittest.cc",
  21. "text_log_upload_list_unittest.cc",
  22. ]
  23. deps = [
  24. ":upload_list",
  25. "//base",
  26. "//base/test:test_support",
  27. "//testing/gtest",
  28. ]
  29. }