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

Side by Side Diff: base/BUILD.gn

Issue 2163783003: Implement a ScopedThreadHeapUsage class to allow profiling per-thread heap usage. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@shim-default
Patch Set: Improve comments, fix cosmetic problems. Created 4 years, 5 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/debug/scoped_heap_usage.h » ('j') | base/debug/scoped_heap_usage.h » ('J')
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 263 matching lines...) Expand 10 before | Expand all | Expand 10 after
274 274
275 # This file depends on files from the "debug/allocator" target, 275 # This file depends on files from the "debug/allocator" target,
276 # but this target does not depend on "debug/allocator" (see 276 # but this target does not depend on "debug/allocator" (see
277 # allocator.gyp for details). 277 # allocator.gyp for details).
278 "debug/leak_annotations.h", 278 "debug/leak_annotations.h",
279 "debug/leak_tracker.h", 279 "debug/leak_tracker.h",
280 "debug/proc_maps_linux.cc", 280 "debug/proc_maps_linux.cc",
281 "debug/proc_maps_linux.h", 281 "debug/proc_maps_linux.h",
282 "debug/profiler.cc", 282 "debug/profiler.cc",
283 "debug/profiler.h", 283 "debug/profiler.h",
284 "debug/scoped_heap_usage.cc",
285 "debug/scoped_heap_usage.h",
284 "debug/stack_trace.cc", 286 "debug/stack_trace.cc",
285 "debug/stack_trace.h", 287 "debug/stack_trace.h",
286 "debug/stack_trace_android.cc", 288 "debug/stack_trace_android.cc",
287 "debug/stack_trace_posix.cc", 289 "debug/stack_trace_posix.cc",
288 "debug/stack_trace_win.cc", 290 "debug/stack_trace_win.cc",
289 "debug/task_annotator.cc", 291 "debug/task_annotator.cc",
290 "debug/task_annotator.h", 292 "debug/task_annotator.h",
291 "deferred_sequenced_task_runner.cc", 293 "deferred_sequenced_task_runner.cc",
292 "deferred_sequenced_task_runner.h", 294 "deferred_sequenced_task_runner.h",
293 "environment.cc", 295 "environment.cc",
(...skipping 1445 matching lines...) Expand 10 before | Expand all | Expand 10 after
1739 "containers/linked_list_unittest.cc", 1741 "containers/linked_list_unittest.cc",
1740 "containers/mru_cache_unittest.cc", 1742 "containers/mru_cache_unittest.cc",
1741 "containers/scoped_ptr_hash_map_unittest.cc", 1743 "containers/scoped_ptr_hash_map_unittest.cc",
1742 "containers/small_map_unittest.cc", 1744 "containers/small_map_unittest.cc",
1743 "containers/stack_container_unittest.cc", 1745 "containers/stack_container_unittest.cc",
1744 "cpu_unittest.cc", 1746 "cpu_unittest.cc",
1745 "debug/crash_logging_unittest.cc", 1747 "debug/crash_logging_unittest.cc",
1746 "debug/debugger_unittest.cc", 1748 "debug/debugger_unittest.cc",
1747 "debug/leak_tracker_unittest.cc", 1749 "debug/leak_tracker_unittest.cc",
1748 "debug/proc_maps_linux_unittest.cc", 1750 "debug/proc_maps_linux_unittest.cc",
1751 "debug/scoped_heap_usage_unittest.cc",
1749 "debug/stack_trace_unittest.cc", 1752 "debug/stack_trace_unittest.cc",
1750 "debug/task_annotator_unittest.cc", 1753 "debug/task_annotator_unittest.cc",
1751 "deferred_sequenced_task_runner_unittest.cc", 1754 "deferred_sequenced_task_runner_unittest.cc",
1752 "environment_unittest.cc", 1755 "environment_unittest.cc",
1753 "feature_list_unittest.cc", 1756 "feature_list_unittest.cc",
1754 "file_version_info_win_unittest.cc", 1757 "file_version_info_win_unittest.cc",
1755 "files/dir_reader_posix_unittest.cc", 1758 "files/dir_reader_posix_unittest.cc",
1756 "files/file_locking_unittest.cc", 1759 "files/file_locking_unittest.cc",
1757 "files/file_path_unittest.cc", 1760 "files/file_path_unittest.cc",
1758 "files/file_path_watcher_unittest.cc", 1761 "files/file_path_watcher_unittest.cc",
(...skipping 661 matching lines...) Expand 10 before | Expand all | Expand 10 after
2420 2423
2421 # GYP: //base.gyp:base_java_unittest_support 2424 # GYP: //base.gyp:base_java_unittest_support
2422 android_library("base_java_unittest_support") { 2425 android_library("base_java_unittest_support") {
2423 deps = [ 2426 deps = [
2424 ":base_java", 2427 ":base_java",
2425 ] 2428 ]
2426 java_files = 2429 java_files =
2427 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2430 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2428 } 2431 }
2429 } 2432 }
OLDNEW
« no previous file with comments | « no previous file | base/debug/scoped_heap_usage.h » ('j') | base/debug/scoped_heap_usage.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698