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

Unified Diff: tools/metrics/BUILD.gn

Issue 2751423003: Start archiving metrics_metadata with builds. (Closed)
Patch Set: Rebase Created 3 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 | « chrome/tools/build/win/FILES.cfg ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/BUILD.gn
diff --git a/tools/metrics/BUILD.gn b/tools/metrics/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..01b1653d2e2057061b64860053888ec49190f186
--- /dev/null
+++ b/tools/metrics/BUILD.gn
@@ -0,0 +1,38 @@
+# Copyright 2017 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.
+
+copy("histograms_xml") {
+ sources = [
+ "histograms/histograms.xml",
+ ]
+ outputs = [
+ "$root_out_dir/histograms.xml",
+ ]
+}
+
+copy("actions_xml") {
+ sources = [
+ "actions/actions.xml",
+ ]
+ outputs = [
+ "$root_out_dir/actions.xml",
+ ]
+}
+
+copy("rappor_xml") {
+ sources = [
+ "rappor/rappor.xml",
+ ]
+ outputs = [
+ "$root_out_dir/rappor.xml",
+ ]
+}
+
+group("metrics_metadata") {
+ deps = [
+ ":actions_xml",
+ ":histograms_xml",
+ ":rappor_xml",
+ ]
+}
« no previous file with comments | « chrome/tools/build/win/FILES.cfg ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698