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

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: Address Nico's comments. Created 4 years, 3 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/allocator/allocator_shim.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 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 "debug/activity_analyzer.cc", 284 "debug/activity_analyzer.cc",
285 "debug/activity_analyzer.h", 285 "debug/activity_analyzer.h",
286 "debug/activity_tracker.cc", 286 "debug/activity_tracker.cc",
287 "debug/activity_tracker.h", 287 "debug/activity_tracker.h",
288 "debug/leak_annotations.h", 288 "debug/leak_annotations.h",
289 "debug/leak_tracker.h", 289 "debug/leak_tracker.h",
290 "debug/proc_maps_linux.cc", 290 "debug/proc_maps_linux.cc",
291 "debug/proc_maps_linux.h", 291 "debug/proc_maps_linux.h",
292 "debug/profiler.cc", 292 "debug/profiler.cc",
293 "debug/profiler.h", 293 "debug/profiler.h",
294 "debug/scoped_thread_heap_usage.cc",
295 "debug/scoped_thread_heap_usage.h",
294 "debug/stack_trace.cc", 296 "debug/stack_trace.cc",
295 "debug/stack_trace.h", 297 "debug/stack_trace.h",
296 "debug/stack_trace_android.cc", 298 "debug/stack_trace_android.cc",
297 "debug/stack_trace_posix.cc", 299 "debug/stack_trace_posix.cc",
298 "debug/stack_trace_win.cc", 300 "debug/stack_trace_win.cc",
299 "debug/task_annotator.cc", 301 "debug/task_annotator.cc",
300 "debug/task_annotator.h", 302 "debug/task_annotator.h",
301 "deferred_sequenced_task_runner.cc", 303 "deferred_sequenced_task_runner.cc",
302 "deferred_sequenced_task_runner.h", 304 "deferred_sequenced_task_runner.h",
303 "environment.cc", 305 "environment.cc",
(...skipping 1460 matching lines...) Expand 10 before | Expand all | Expand 10 after
1764 "containers/scoped_ptr_hash_map_unittest.cc", 1766 "containers/scoped_ptr_hash_map_unittest.cc",
1765 "containers/small_map_unittest.cc", 1767 "containers/small_map_unittest.cc",
1766 "containers/stack_container_unittest.cc", 1768 "containers/stack_container_unittest.cc",
1767 "cpu_unittest.cc", 1769 "cpu_unittest.cc",
1768 "debug/activity_analyzer_unittest.cc", 1770 "debug/activity_analyzer_unittest.cc",
1769 "debug/activity_tracker_unittest.cc", 1771 "debug/activity_tracker_unittest.cc",
1770 "debug/crash_logging_unittest.cc", 1772 "debug/crash_logging_unittest.cc",
1771 "debug/debugger_unittest.cc", 1773 "debug/debugger_unittest.cc",
1772 "debug/leak_tracker_unittest.cc", 1774 "debug/leak_tracker_unittest.cc",
1773 "debug/proc_maps_linux_unittest.cc", 1775 "debug/proc_maps_linux_unittest.cc",
1776 "debug/scoped_thread_heap_usage_unittest.cc",
1774 "debug/stack_trace_unittest.cc", 1777 "debug/stack_trace_unittest.cc",
1775 "debug/task_annotator_unittest.cc", 1778 "debug/task_annotator_unittest.cc",
1776 "deferred_sequenced_task_runner_unittest.cc", 1779 "deferred_sequenced_task_runner_unittest.cc",
1777 "environment_unittest.cc", 1780 "environment_unittest.cc",
1778 "feature_list_unittest.cc", 1781 "feature_list_unittest.cc",
1779 "file_version_info_win_unittest.cc", 1782 "file_version_info_win_unittest.cc",
1780 "files/dir_reader_posix_unittest.cc", 1783 "files/dir_reader_posix_unittest.cc",
1781 "files/file_locking_unittest.cc", 1784 "files/file_locking_unittest.cc",
1782 "files/file_path_unittest.cc", 1785 "files/file_path_unittest.cc",
1783 "files/file_path_watcher_unittest.cc", 1786 "files/file_path_watcher_unittest.cc",
(...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after
2441 android_library("base_java_unittest_support") { 2444 android_library("base_java_unittest_support") {
2442 deps = [ 2445 deps = [
2443 ":base_java", 2446 ":base_java",
2444 ] 2447 ]
2445 java_files = [ 2448 java_files = [
2446 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", 2449 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java",
2447 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", 2450 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java",
2448 ] 2451 ]
2449 } 2452 }
2450 } 2453 }
OLDNEW
« no previous file with comments | « no previous file | base/allocator/allocator_shim.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698