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

Side by Side Diff: base/BUILD.gn

Issue 1410213004: Create "persistent memory allocator" for persisting and sharing objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: addressed review comments by Chris Created 4 years, 11 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 489 matching lines...) Expand 10 before | Expand all | Expand 10 after
500 "metrics/histogram_delta_serialization.cc", 500 "metrics/histogram_delta_serialization.cc",
501 "metrics/histogram_delta_serialization.h", 501 "metrics/histogram_delta_serialization.h",
502 "metrics/histogram_flattener.h", 502 "metrics/histogram_flattener.h",
503 "metrics/histogram_macros.h", 503 "metrics/histogram_macros.h",
504 "metrics/histogram_samples.cc", 504 "metrics/histogram_samples.cc",
505 "metrics/histogram_samples.h", 505 "metrics/histogram_samples.h",
506 "metrics/histogram_snapshot_manager.cc", 506 "metrics/histogram_snapshot_manager.cc",
507 "metrics/histogram_snapshot_manager.h", 507 "metrics/histogram_snapshot_manager.h",
508 "metrics/metrics_hashes.cc", 508 "metrics/metrics_hashes.cc",
509 "metrics/metrics_hashes.h", 509 "metrics/metrics_hashes.h",
510 "metrics/persistent_memory_allocator.cc",
511 "metrics/persistent_memory_allocator.h",
510 "metrics/sample_map.cc", 512 "metrics/sample_map.cc",
511 "metrics/sample_map.h", 513 "metrics/sample_map.h",
512 "metrics/sample_vector.cc", 514 "metrics/sample_vector.cc",
513 "metrics/sample_vector.h", 515 "metrics/sample_vector.h",
514 "metrics/sparse_histogram.cc", 516 "metrics/sparse_histogram.cc",
515 "metrics/sparse_histogram.h", 517 "metrics/sparse_histogram.h",
516 "metrics/statistics_recorder.cc", 518 "metrics/statistics_recorder.cc",
517 "metrics/statistics_recorder.h", 519 "metrics/statistics_recorder.h",
518 "metrics/user_metrics.cc", 520 "metrics/user_metrics.cc",
519 "metrics/user_metrics.h", 521 "metrics/user_metrics.h",
(...skipping 1193 matching lines...) Expand 10 before | Expand all | Expand 10 after
1713 "message_loop/message_pump_glib_unittest.cc", 1715 "message_loop/message_pump_glib_unittest.cc",
1714 "message_loop/message_pump_io_ios_unittest.cc", 1716 "message_loop/message_pump_io_ios_unittest.cc",
1715 "metrics/bucket_ranges_unittest.cc", 1717 "metrics/bucket_ranges_unittest.cc",
1716 "metrics/field_trial_unittest.cc", 1718 "metrics/field_trial_unittest.cc",
1717 "metrics/histogram_base_unittest.cc", 1719 "metrics/histogram_base_unittest.cc",
1718 "metrics/histogram_delta_serialization_unittest.cc", 1720 "metrics/histogram_delta_serialization_unittest.cc",
1719 "metrics/histogram_macros_unittest.cc", 1721 "metrics/histogram_macros_unittest.cc",
1720 "metrics/histogram_snapshot_manager_unittest.cc", 1722 "metrics/histogram_snapshot_manager_unittest.cc",
1721 "metrics/histogram_unittest.cc", 1723 "metrics/histogram_unittest.cc",
1722 "metrics/metrics_hashes_unittest.cc", 1724 "metrics/metrics_hashes_unittest.cc",
1725 "metrics/persistent_memory_allocator_unittest.cc",
1723 "metrics/sample_map_unittest.cc", 1726 "metrics/sample_map_unittest.cc",
1724 "metrics/sample_vector_unittest.cc", 1727 "metrics/sample_vector_unittest.cc",
1725 "metrics/sparse_histogram_unittest.cc", 1728 "metrics/sparse_histogram_unittest.cc",
1726 "metrics/statistics_recorder_unittest.cc", 1729 "metrics/statistics_recorder_unittest.cc",
1727 "native_library_unittest.cc", 1730 "native_library_unittest.cc",
1728 "numerics/safe_numerics_unittest.cc", 1731 "numerics/safe_numerics_unittest.cc",
1729 "observer_list_unittest.cc", 1732 "observer_list_unittest.cc",
1730 "os_compat_android_unittest.cc", 1733 "os_compat_android_unittest.cc",
1731 "path_service_unittest.cc", 1734 "path_service_unittest.cc",
1732 "pickle_unittest.cc", 1735 "pickle_unittest.cc",
(...skipping 410 matching lines...) Expand 10 before | Expand all | Expand 10 after
2143 2146
2144 # GYP: //base.gyp:base_java_unittest_support 2147 # GYP: //base.gyp:base_java_unittest_support
2145 android_library("base_java_unittest_support") { 2148 android_library("base_java_unittest_support") {
2146 deps = [ 2149 deps = [
2147 ":base_java", 2150 ":base_java",
2148 ] 2151 ]
2149 java_files = 2152 java_files =
2150 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2153 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2151 } 2154 }
2152 } 2155 }
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