| 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",
|
| + ]
|
| +}
|
|
|