• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Copyright 2014 The Chromium Authors
2# Use of this source code is governed by a BSD-style license that can be
3# found in the LICENSE file.
4
5source_set("perf") {
6  testonly = true
7  sources = [
8    "luci_test_result.cc",
9    "luci_test_result.h",
10    "perf_result_reporter.cc",
11    "perf_result_reporter.h",
12    "perf_test.cc",
13    "perf_test.h",
14  ]
15  deps = [
16    "//base",
17    "//testing/gtest",
18  ]
19}
20
21source_set("unit_tests") {
22  testonly = true
23  sources = [ "luci_test_result_unittest.cc" ]
24  deps = [
25    ":perf",
26    "//base",
27    "//testing/gtest",
28  ]
29}
30