910e62b5创建于 1月15日历史提交
# Copyright 2022 The Chromium Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

component("metrics") {
  defines = [ "IS_COMPONENTS_ACCESS_CODE_CAST_COMMON_IMPL" ]

  sources = [
    "access_code_cast_metrics.cc",
    "access_code_cast_metrics.h",
  ]

  public_deps = [ "//base" ]
}

source_set("unit_tests") {
  testonly = true
  sources = [ "access_code_cast_metrics_unittest.cc" ]
  deps = [
    "//base/test:test_support",
    "//components/access_code_cast/common:metrics",
    "//testing/gtest",
  ]
  data = [ "//tools/metrics/histograms/enums.xml" ]
}