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

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

Issue 1055173005: Add BUILD.gn files for chromecast/media (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: moved args.gn Created 5 years, 8 months 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 | « chromecast/base/BUILD.gn ('k') | chromecast/build/args.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 }
OLDNEW
« no previous file with comments | « chromecast/base/BUILD.gn ('k') | chromecast/build/args.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698