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

Unified 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromecast/base/BUILD.gn ('k') | chromecast/build/args.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/base/metrics/BUILD.gn
diff --git a/chromecast/base/metrics/BUILD.gn b/chromecast/base/metrics/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..7ed81a562fe9d6d40978883c5fea823eb5b8120d
--- /dev/null
+++ b/chromecast/base/metrics/BUILD.gn
@@ -0,0 +1,35 @@
+# 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 = [
+ "//chromecast/base",
+ ]
+
+ configs += [ "//chromecast:config" ]
+}
+
+source_set("test_support") {
+ testonly = true
+
+ sources = [
+ "cast_metrics_test_helper.cc",
+ "cast_metrics_test_helper.h",
+ ]
+
+ deps = [
+ ":metrics",
+ "//chromecast/base",
+ ]
+
+ configs += [ "//chromecast:config" ]
+}
« 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