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

Side by Side Diff: base/BUILD.gn

Issue 1980743002: Track thread activities in order to diagnose hangs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@readwrite-mmf
Patch Set: address review comments by manzagop 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/base.gyp » ('j') | base/debug/activity_tracker.cc » ('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 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 "debug/debugger_posix.cc", 268 "debug/debugger_posix.cc",
269 "debug/debugger_win.cc", 269 "debug/debugger_win.cc",
270 "debug/dump_without_crashing.cc", 270 "debug/dump_without_crashing.cc",
271 "debug/dump_without_crashing.h", 271 "debug/dump_without_crashing.h",
272 "debug/gdi_debug_util_win.cc", 272 "debug/gdi_debug_util_win.cc",
273 "debug/gdi_debug_util_win.h", 273 "debug/gdi_debug_util_win.h",
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/activity_analyzer.cc",
279 "debug/activity_analyzer.h",
280 "debug/activity_tracker.cc",
281 "debug/activity_tracker.h",
278 "debug/leak_annotations.h", 282 "debug/leak_annotations.h",
279 "debug/leak_tracker.h", 283 "debug/leak_tracker.h",
280 "debug/proc_maps_linux.cc", 284 "debug/proc_maps_linux.cc",
281 "debug/proc_maps_linux.h", 285 "debug/proc_maps_linux.h",
282 "debug/profiler.cc", 286 "debug/profiler.cc",
283 "debug/profiler.h", 287 "debug/profiler.h",
284 "debug/stack_trace.cc", 288 "debug/stack_trace.cc",
285 "debug/stack_trace.h", 289 "debug/stack_trace.h",
286 "debug/stack_trace_android.cc", 290 "debug/stack_trace_android.cc",
287 "debug/stack_trace_posix.cc", 291 "debug/stack_trace_posix.cc",
(...skipping 1446 matching lines...) Expand 10 before | Expand all | Expand 10 after
1734 "cancelable_callback_unittest.cc", 1738 "cancelable_callback_unittest.cc",
1735 "command_line_unittest.cc", 1739 "command_line_unittest.cc",
1736 "containers/adapters_unittest.cc", 1740 "containers/adapters_unittest.cc",
1737 "containers/hash_tables_unittest.cc", 1741 "containers/hash_tables_unittest.cc",
1738 "containers/linked_list_unittest.cc", 1742 "containers/linked_list_unittest.cc",
1739 "containers/mru_cache_unittest.cc", 1743 "containers/mru_cache_unittest.cc",
1740 "containers/scoped_ptr_hash_map_unittest.cc", 1744 "containers/scoped_ptr_hash_map_unittest.cc",
1741 "containers/small_map_unittest.cc", 1745 "containers/small_map_unittest.cc",
1742 "containers/stack_container_unittest.cc", 1746 "containers/stack_container_unittest.cc",
1743 "cpu_unittest.cc", 1747 "cpu_unittest.cc",
1748 "debug/activity_analyzer_unittest.cc",
1749 "debug/activity_tracker_unittest.cc",
1744 "debug/crash_logging_unittest.cc", 1750 "debug/crash_logging_unittest.cc",
1745 "debug/debugger_unittest.cc", 1751 "debug/debugger_unittest.cc",
1746 "debug/leak_tracker_unittest.cc", 1752 "debug/leak_tracker_unittest.cc",
1747 "debug/proc_maps_linux_unittest.cc", 1753 "debug/proc_maps_linux_unittest.cc",
1748 "debug/stack_trace_unittest.cc", 1754 "debug/stack_trace_unittest.cc",
1749 "debug/task_annotator_unittest.cc", 1755 "debug/task_annotator_unittest.cc",
1750 "deferred_sequenced_task_runner_unittest.cc", 1756 "deferred_sequenced_task_runner_unittest.cc",
1751 "environment_unittest.cc", 1757 "environment_unittest.cc",
1752 "feature_list_unittest.cc", 1758 "feature_list_unittest.cc",
1753 "file_version_info_win_unittest.cc", 1759 "file_version_info_win_unittest.cc",
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after
2417 2423
2418 # GYP: //base.gyp:base_java_unittest_support 2424 # GYP: //base.gyp:base_java_unittest_support
2419 android_library("base_java_unittest_support") { 2425 android_library("base_java_unittest_support") {
2420 deps = [ 2426 deps = [
2421 ":base_java", 2427 ":base_java",
2422 ] 2428 ]
2423 java_files = 2429 java_files =
2424 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2430 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2425 } 2431 }
2426 } 2432 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | base/debug/activity_tracker.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698