| OLD | NEW |
| (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 } |
| OLD | NEW |