OLD | NEW |
(Empty) | |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 source_set("metrics") { |
| 6 sources = [ |
| 7 "cast_histograms.h", |
| 8 "cast_metrics_helper.cc", |
| 9 "cast_metrics_helper.h", |
| 10 "grouped_histogram.cc", |
| 11 "grouped_histogram.h", |
| 12 ] |
| 13 |
| 14 deps = [ |
| 15 "//chromecast/base", |
| 16 ] |
| 17 |
| 18 configs += [ "//chromecast:config" ] |
| 19 } |
| 20 |
| 21 source_set("test_support") { |
| 22 testonly = true |
| 23 |
| 24 sources = [ |
| 25 "cast_metrics_test_helper.cc", |
| 26 "cast_metrics_test_helper.h", |
| 27 ] |
| 28 |
| 29 deps = [ |
| 30 ":metrics", |
| 31 "//chromecast/base", |
| 32 ] |
| 33 |
| 34 configs += [ "//chromecast:config" ] |
| 35 } |
OLD | NEW |