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