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..01318a269f62266584ba84a087cacfac382cea16 |
--- /dev/null |
+++ b/chromecast/base/metrics/BUILD.gn |
@@ -0,0 +1,29 @@ |
+# Copyright (c) 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. |
+ |
+component("metrics") { |
+ sources = [ |
brettw
2015/04/21 16:39:09
Apply the config to these targets.
Also: source_s
prashantv
2015/04/21 18:21:36
Done.
|
+ "cast_histograms.h", |
+ "cast_metrics_helper.cc", |
+ "cast_metrics_helper.h", |
+ "grouped_histogram.cc", |
+ "grouped_histogram.h", |
+ ] |
+ |
+ deps = [ |
+ "//chromecast/base", |
+ ] |
+} |
+ |
+component("test_support") { |
+ sources = [ |
+ "cast_metrics_test_helper.cc", |
+ "cast_metrics_test_helper.h", |
+ ] |
+ |
+ deps = [ |
+ ":metrics", |
+ "//chromecast/base", |
+ ] |
+} |