BUILD.gn 587 B

1234567891011121314151617181920212223242526272829
  1. # Copyright 2014 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("perf") {
  5. testonly = true
  6. sources = [
  7. "luci_test_result.cc",
  8. "luci_test_result.h",
  9. "perf_result_reporter.cc",
  10. "perf_result_reporter.h",
  11. "perf_test.cc",
  12. "perf_test.h",
  13. ]
  14. deps = [
  15. "//base",
  16. "//testing/gtest",
  17. ]
  18. }
  19. source_set("unit_tests") {
  20. testonly = true
  21. sources = [ "luci_test_result_unittest.cc" ]
  22. deps = [
  23. ":perf",
  24. "//base",
  25. "//testing/gtest",
  26. ]
  27. }