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

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: rebased Created 4 years, 6 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_analyzer.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 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 1447 matching lines...) Expand 10 before | Expand all | Expand 10 after
1735 "cancelable_callback_unittest.cc", 1739 "cancelable_callback_unittest.cc",
1736 "command_line_unittest.cc", 1740 "command_line_unittest.cc",
1737 "containers/adapters_unittest.cc", 1741 "containers/adapters_unittest.cc",
1738 "containers/hash_tables_unittest.cc", 1742 "containers/hash_tables_unittest.cc",
1739 "containers/linked_list_unittest.cc", 1743 "containers/linked_list_unittest.cc",
1740 "containers/mru_cache_unittest.cc", 1744 "containers/mru_cache_unittest.cc",
1741 "containers/scoped_ptr_hash_map_unittest.cc", 1745 "containers/scoped_ptr_hash_map_unittest.cc",
1742 "containers/small_map_unittest.cc", 1746 "containers/small_map_unittest.cc",
1743 "containers/stack_container_unittest.cc", 1747 "containers/stack_container_unittest.cc",
1744 "cpu_unittest.cc", 1748 "cpu_unittest.cc",
1749 "debug/activity_analyzer_unittest.cc",
1750 "debug/activity_tracker_unittest.cc",
1745 "debug/crash_logging_unittest.cc", 1751 "debug/crash_logging_unittest.cc",
1746 "debug/debugger_unittest.cc", 1752 "debug/debugger_unittest.cc",
1747 "debug/leak_tracker_unittest.cc", 1753 "debug/leak_tracker_unittest.cc",
1748 "debug/proc_maps_linux_unittest.cc", 1754 "debug/proc_maps_linux_unittest.cc",
1749 "debug/stack_trace_unittest.cc", 1755 "debug/stack_trace_unittest.cc",
1750 "debug/task_annotator_unittest.cc", 1756 "debug/task_annotator_unittest.cc",
1751 "deferred_sequenced_task_runner_unittest.cc", 1757 "deferred_sequenced_task_runner_unittest.cc",
1752 "environment_unittest.cc", 1758 "environment_unittest.cc",
1753 "feature_list_unittest.cc", 1759 "feature_list_unittest.cc",
1754 "file_version_info_unittest.cc", 1760 "file_version_info_unittest.cc",
(...skipping 663 matching lines...) Expand 10 before | Expand all | Expand 10 after
2418 2424
2419 # GYP: //base.gyp:base_java_unittest_support 2425 # GYP: //base.gyp:base_java_unittest_support
2420 android_library("base_java_unittest_support") { 2426 android_library("base_java_unittest_support") {
2421 deps = [ 2427 deps = [
2422 ":base_java", 2428 ":base_java",
2423 ] 2429 ]
2424 java_files = 2430 java_files =
2425 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2431 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2426 } 2432 }
2427 } 2433 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | base/debug/activity_analyzer.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698