summaryrefslogtreecommitdiffstats
path: root/chromecast/base/metrics/BUILD.gn
blob: a9556a5877e452bfc8ce0569a21c35d60dd76440 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
# Copyright 2015 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.

source_set("metrics") {
  sources = [
    "cast_histograms.h",
    "cast_metrics_helper.cc",
    "cast_metrics_helper.h",
    "grouped_histogram.cc",
    "grouped_histogram.h",
  ]

  deps = [
    "//base",
  ]
}

source_set("test_support") {
  testonly = true

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

  public_deps = [
    ":metrics",
  ]

  deps = [
    "//base",
  ]
}