OLD | NEW |
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. | 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 | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 source_set("metrics") { | 5 source_set("metrics") { |
6 sources = [ | 6 sources = [ |
7 "bucket_ranges.cc", | 7 "bucket_ranges.cc", |
8 "bucket_ranges.h", | 8 "bucket_ranges.h", |
9 "field_trial.cc", | 9 "field_trial.cc", |
10 "field_trial.h", | 10 "field_trial.h", |
11 "histogram.cc", | 11 "histogram.cc", |
12 "histogram.h", | 12 "histogram.h", |
13 "histogram_base.cc", | 13 "histogram_base.cc", |
14 "histogram_base.h", | 14 "histogram_base.h", |
15 "histogram_delta_serialization.cc", | 15 "histogram_delta_serialization.cc", |
16 "histogram_delta_serialization.h", | 16 "histogram_delta_serialization.h", |
17 "histogram_flattener.h", | 17 "histogram_flattener.h", |
18 "histogram_macros.h", | 18 "histogram_macros.h", |
| 19 "histogram_persistence.cc", |
| 20 "histogram_persistence.h", |
19 "histogram_samples.cc", | 21 "histogram_samples.cc", |
20 "histogram_samples.h", | 22 "histogram_samples.h", |
21 "histogram_snapshot_manager.cc", | 23 "histogram_snapshot_manager.cc", |
22 "histogram_snapshot_manager.h", | 24 "histogram_snapshot_manager.h", |
23 "metrics_hashes.cc", | 25 "metrics_hashes.cc", |
24 "metrics_hashes.h", | 26 "metrics_hashes.h", |
25 "persistent_memory_allocator.cc", | 27 "persistent_memory_allocator.cc", |
26 "persistent_memory_allocator.h", | 28 "persistent_memory_allocator.h", |
27 "sample_map.cc", | 29 "sample_map.cc", |
28 "sample_map.h", | 30 "sample_map.h", |
(...skipping 17 matching lines...) Expand all Loading... |
46 "//base/process", | 48 "//base/process", |
47 ] | 49 ] |
48 | 50 |
49 allow_circular_includes_from = [ | 51 allow_circular_includes_from = [ |
50 "//base/memory", | 52 "//base/memory", |
51 "//base/process", | 53 "//base/process", |
52 ] | 54 ] |
53 | 55 |
54 visibility = [ "//base/*" ] | 56 visibility = [ "//base/*" ] |
55 } | 57 } |
OLD | NEW |