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