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

Side by Side Diff: base/BUILD.gn

Issue 2687583002: Add support for single sample metrics. (Closed)
Patch Set: Address comments. Created 3 years, 7 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 | « no previous file | base/metrics/single_sample_metrics.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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 # HOW TO WRITE CONDITIONALS IN THIS FILE 5 # HOW TO WRITE CONDITIONALS IN THIS FILE
6 # ====================================== 6 # ======================================
7 # 7 #
8 # In many other places, one would write a conditional that expresses all the 8 # In many other places, one would write a conditional that expresses all the
9 # cases when a source file is used or unused, and then either add or subtract 9 # cases when a source file is used or unused, and then either add or subtract
10 # it from the sources list in that case 10 # it from the sources list in that case
(...skipping 561 matching lines...) Expand 10 before | Expand all | Expand 10 after
572 "metrics/persistent_histogram_allocator.cc", 572 "metrics/persistent_histogram_allocator.cc",
573 "metrics/persistent_histogram_allocator.h", 573 "metrics/persistent_histogram_allocator.h",
574 "metrics/persistent_memory_allocator.cc", 574 "metrics/persistent_memory_allocator.cc",
575 "metrics/persistent_memory_allocator.h", 575 "metrics/persistent_memory_allocator.h",
576 "metrics/persistent_sample_map.cc", 576 "metrics/persistent_sample_map.cc",
577 "metrics/persistent_sample_map.h", 577 "metrics/persistent_sample_map.h",
578 "metrics/sample_map.cc", 578 "metrics/sample_map.cc",
579 "metrics/sample_map.h", 579 "metrics/sample_map.h",
580 "metrics/sample_vector.cc", 580 "metrics/sample_vector.cc",
581 "metrics/sample_vector.h", 581 "metrics/sample_vector.h",
582 "metrics/single_sample_metrics.cc",
583 "metrics/single_sample_metrics.h",
582 "metrics/sparse_histogram.cc", 584 "metrics/sparse_histogram.cc",
583 "metrics/sparse_histogram.h", 585 "metrics/sparse_histogram.h",
584 "metrics/statistics_recorder.cc", 586 "metrics/statistics_recorder.cc",
585 "metrics/statistics_recorder.h", 587 "metrics/statistics_recorder.h",
586 "metrics/user_metrics.cc", 588 "metrics/user_metrics.cc",
587 "metrics/user_metrics.h", 589 "metrics/user_metrics.h",
588 "metrics/user_metrics_action.h", 590 "metrics/user_metrics_action.h",
589 "native_library.cc", 591 "native_library.cc",
590 "native_library.h", 592 "native_library.h",
591 "native_library_ios.mm", 593 "native_library_ios.mm",
(...skipping 1449 matching lines...) Expand 10 before | Expand all | Expand 10 after
2041 "metrics/histogram_functions_unittest.cc", 2043 "metrics/histogram_functions_unittest.cc",
2042 "metrics/histogram_macros_unittest.cc", 2044 "metrics/histogram_macros_unittest.cc",
2043 "metrics/histogram_snapshot_manager_unittest.cc", 2045 "metrics/histogram_snapshot_manager_unittest.cc",
2044 "metrics/histogram_unittest.cc", 2046 "metrics/histogram_unittest.cc",
2045 "metrics/metrics_hashes_unittest.cc", 2047 "metrics/metrics_hashes_unittest.cc",
2046 "metrics/persistent_histogram_allocator_unittest.cc", 2048 "metrics/persistent_histogram_allocator_unittest.cc",
2047 "metrics/persistent_memory_allocator_unittest.cc", 2049 "metrics/persistent_memory_allocator_unittest.cc",
2048 "metrics/persistent_sample_map_unittest.cc", 2050 "metrics/persistent_sample_map_unittest.cc",
2049 "metrics/sample_map_unittest.cc", 2051 "metrics/sample_map_unittest.cc",
2050 "metrics/sample_vector_unittest.cc", 2052 "metrics/sample_vector_unittest.cc",
2053 "metrics/single_sample_metrics_unittest.cc",
2051 "metrics/sparse_histogram_unittest.cc", 2054 "metrics/sparse_histogram_unittest.cc",
2052 "metrics/statistics_recorder_unittest.cc", 2055 "metrics/statistics_recorder_unittest.cc",
2053 "native_library_unittest.cc", 2056 "native_library_unittest.cc",
2054 "numerics/safe_numerics_unittest.cc", 2057 "numerics/safe_numerics_unittest.cc",
2055 "numerics/saturated_arithmetic_unittest.cc", 2058 "numerics/saturated_arithmetic_unittest.cc",
2056 "observer_list_unittest.cc", 2059 "observer_list_unittest.cc",
2057 "optional_unittest.cc", 2060 "optional_unittest.cc",
2058 "os_compat_android_unittest.cc", 2061 "os_compat_android_unittest.cc",
2059 "path_service_unittest.cc", 2062 "path_service_unittest.cc",
2060 "pending_task_unittest.cc", 2063 "pending_task_unittest.cc",
(...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after
2707 } 2710 }
2708 2711
2709 fuzzer_test("base_json_correctness_fuzzer") { 2712 fuzzer_test("base_json_correctness_fuzzer") {
2710 sources = [ 2713 sources = [
2711 "json/correctness_fuzzer.cc", 2714 "json/correctness_fuzzer.cc",
2712 ] 2715 ]
2713 deps = [ 2716 deps = [
2714 ":base", 2717 ":base",
2715 ] 2718 ]
2716 } 2719 }
OLDNEW
« no previous file with comments | « no previous file | base/metrics/single_sample_metrics.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698