Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(118)

Side by Side Diff: chromecast/base/metrics/BUILD.gn

Issue 2563073002: [Chromecast] Add mock implementation of CastMetricsHelper. (Closed)
Patch Set: Created 4 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | chromecast/base/metrics/mock_cast_metrics_helper.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « no previous file | chromecast/base/metrics/mock_cast_metrics_helper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698