xref: /aosp_15_r20/external/cronet/testing/perf/BUILD.gn (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
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    "//base:i18n",
18    "//testing/gtest",
19  ]
20}
21
22source_set("unit_tests") {
23  testonly = true
24  sources = [ "luci_test_result_unittest.cc" ]
25  deps = [
26    ":perf",
27    "//base",
28    "//testing/gtest",
29  ]
30}
31