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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « chrome/tools/build/win/FILES.cfg ('k') | no next file » | 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 2017 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 copy("histograms_xml") {
6 sources = [
7 "histograms/histograms.xml",
8 ]
9 outputs = [
10 "$root_out_dir/histograms.xml",
11 ]
12 }
13
14 copy("actions_xml") {
15 sources = [
16 "actions/actions.xml",
17 ]
18 outputs = [
19 "$root_out_dir/actions.xml",
20 ]
21 }
22
23 copy("rappor_xml") {
24 sources = [
25 "rappor/rappor.xml",
26 ]
27 outputs = [
28 "$root_out_dir/rappor.xml",
29 ]
30 }
31
32 group("metrics_metadata") {
33 deps = [
34 ":actions_xml",
35 ":histograms_xml",
36 ":rappor_xml",
37 ]
38 }
OLDNEW
« 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