blob: cc99e7fde7668a9be7477ae63abae95af554ccfe [file] [log] [blame]
# Copyright 2018 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
component("scheduling_metrics") {
sources = [
"task_duration_metric_reporter.h",
"thread_metrics.cc",
"thread_metrics.h",
"thread_type.h",
"total_duration_metric_reporter.cc",
"total_duration_metric_reporter.h",
]
defines = [ "IS_SCHEDULING_METRICS_IMPL" ]
public_deps = [
"//base",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"thread_metrics_unittest.cc",
"total_duration_metric_reporter_unittest.cc",
]
deps = [
":scheduling_metrics",
"//base/test:test_support",
"//testing/gmock",
"//testing/gtest",
]
}