| OLD | NEW |
| (Empty) |
| 1 # Copyright (c) 2015 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 source_set("metrics") { | |
| 6 sources = [ | |
| 7 "bucket_ranges.cc", | |
| 8 "bucket_ranges.h", | |
| 9 "field_trial.cc", | |
| 10 "field_trial.h", | |
| 11 "histogram.cc", | |
| 12 "histogram.h", | |
| 13 "histogram_base.cc", | |
| 14 "histogram_base.h", | |
| 15 "histogram_delta_serialization.cc", | |
| 16 "histogram_delta_serialization.h", | |
| 17 "histogram_flattener.h", | |
| 18 "histogram_macros.h", | |
| 19 "histogram_samples.cc", | |
| 20 "histogram_samples.h", | |
| 21 "histogram_snapshot_manager.cc", | |
| 22 "histogram_snapshot_manager.h", | |
| 23 "metrics_hashes.cc", | |
| 24 "metrics_hashes.h", | |
| 25 "sample_map.cc", | |
| 26 "sample_map.h", | |
| 27 "sample_vector.cc", | |
| 28 "sample_vector.h", | |
| 29 "sparse_histogram.cc", | |
| 30 "sparse_histogram.h", | |
| 31 "statistics_recorder.cc", | |
| 32 "statistics_recorder.h", | |
| 33 "user_metrics.cc", | |
| 34 "user_metrics.h", | |
| 35 "user_metrics_action.h", | |
| 36 ] | |
| 37 | |
| 38 configs += [ "//base:base_implementation" ] | |
| 39 | |
| 40 deps = [ | |
| 41 "//base/debug", | |
| 42 "//base/json", | |
| 43 "//base/memory", | |
| 44 "//base/process", | |
| 45 ] | |
| 46 | |
| 47 allow_circular_includes_from = [ | |
| 48 "//base/memory", | |
| 49 "//base/process", | |
| 50 ] | |
| 51 | |
| 52 visibility = [ "//base/*" ] | |
| 53 } | |
| OLD | NEW |