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

Side by Side Diff: base/BUILD.gn

Issue 1738063002: Refactor histogram_persistence to be a class. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed final review comments by Alexei Created 4 years, 9 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/base.gyp » ('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 499 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 "metrics/field_trial.cc", 510 "metrics/field_trial.cc",
511 "metrics/field_trial.h", 511 "metrics/field_trial.h",
512 "metrics/histogram.cc", 512 "metrics/histogram.cc",
513 "metrics/histogram.h", 513 "metrics/histogram.h",
514 "metrics/histogram_base.cc", 514 "metrics/histogram_base.cc",
515 "metrics/histogram_base.h", 515 "metrics/histogram_base.h",
516 "metrics/histogram_delta_serialization.cc", 516 "metrics/histogram_delta_serialization.cc",
517 "metrics/histogram_delta_serialization.h", 517 "metrics/histogram_delta_serialization.h",
518 "metrics/histogram_flattener.h", 518 "metrics/histogram_flattener.h",
519 "metrics/histogram_macros.h", 519 "metrics/histogram_macros.h",
520 "metrics/histogram_persistence.cc",
521 "metrics/histogram_persistence.h",
522 "metrics/histogram_samples.cc", 520 "metrics/histogram_samples.cc",
523 "metrics/histogram_samples.h", 521 "metrics/histogram_samples.h",
524 "metrics/histogram_snapshot_manager.cc", 522 "metrics/histogram_snapshot_manager.cc",
525 "metrics/histogram_snapshot_manager.h", 523 "metrics/histogram_snapshot_manager.h",
526 "metrics/metrics_hashes.cc", 524 "metrics/metrics_hashes.cc",
527 "metrics/metrics_hashes.h", 525 "metrics/metrics_hashes.h",
526 "metrics/persistent_histogram_allocator.cc",
527 "metrics/persistent_histogram_allocator.h",
528 "metrics/persistent_memory_allocator.cc", 528 "metrics/persistent_memory_allocator.cc",
529 "metrics/persistent_memory_allocator.h", 529 "metrics/persistent_memory_allocator.h",
530 "metrics/sample_map.cc", 530 "metrics/sample_map.cc",
531 "metrics/sample_map.h", 531 "metrics/sample_map.h",
532 "metrics/sample_vector.cc", 532 "metrics/sample_vector.cc",
533 "metrics/sample_vector.h", 533 "metrics/sample_vector.h",
534 "metrics/sparse_histogram.cc", 534 "metrics/sparse_histogram.cc",
535 "metrics/sparse_histogram.h", 535 "metrics/sparse_histogram.h",
536 "metrics/statistics_recorder.cc", 536 "metrics/statistics_recorder.cc",
537 "metrics/statistics_recorder.h", 537 "metrics/statistics_recorder.h",
(...skipping 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1648 "message_loop/message_pump_glib_unittest.cc", 1648 "message_loop/message_pump_glib_unittest.cc",
1649 "message_loop/message_pump_io_ios_unittest.cc", 1649 "message_loop/message_pump_io_ios_unittest.cc",
1650 "metrics/bucket_ranges_unittest.cc", 1650 "metrics/bucket_ranges_unittest.cc",
1651 "metrics/field_trial_unittest.cc", 1651 "metrics/field_trial_unittest.cc",
1652 "metrics/histogram_base_unittest.cc", 1652 "metrics/histogram_base_unittest.cc",
1653 "metrics/histogram_delta_serialization_unittest.cc", 1653 "metrics/histogram_delta_serialization_unittest.cc",
1654 "metrics/histogram_macros_unittest.cc", 1654 "metrics/histogram_macros_unittest.cc",
1655 "metrics/histogram_snapshot_manager_unittest.cc", 1655 "metrics/histogram_snapshot_manager_unittest.cc",
1656 "metrics/histogram_unittest.cc", 1656 "metrics/histogram_unittest.cc",
1657 "metrics/metrics_hashes_unittest.cc", 1657 "metrics/metrics_hashes_unittest.cc",
1658 "metrics/persistent_histogram_allocator_unittest.cc",
1658 "metrics/persistent_memory_allocator_unittest.cc", 1659 "metrics/persistent_memory_allocator_unittest.cc",
1659 "metrics/sample_map_unittest.cc", 1660 "metrics/sample_map_unittest.cc",
1660 "metrics/sample_vector_unittest.cc", 1661 "metrics/sample_vector_unittest.cc",
1661 "metrics/sparse_histogram_unittest.cc", 1662 "metrics/sparse_histogram_unittest.cc",
1662 "metrics/statistics_recorder_unittest.cc", 1663 "metrics/statistics_recorder_unittest.cc",
1663 "native_library_unittest.cc", 1664 "native_library_unittest.cc",
1664 "numerics/safe_numerics_unittest.cc", 1665 "numerics/safe_numerics_unittest.cc",
1665 "observer_list_unittest.cc", 1666 "observer_list_unittest.cc",
1666 "os_compat_android_unittest.cc", 1667 "os_compat_android_unittest.cc",
1667 "path_service_unittest.cc", 1668 "path_service_unittest.cc",
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after
2092 2093
2093 # GYP: //base.gyp:base_java_unittest_support 2094 # GYP: //base.gyp:base_java_unittest_support
2094 android_library("base_java_unittest_support") { 2095 android_library("base_java_unittest_support") {
2095 deps = [ 2096 deps = [
2096 ":base_java", 2097 ":base_java",
2097 ] 2098 ]
2098 java_files = 2099 java_files =
2099 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2100 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2100 } 2101 }
2101 } 2102 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698