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

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, 4 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after
272 "debug/debugger_posix.cc", 272 "debug/debugger_posix.cc",
273 "debug/debugger_win.cc", 273 "debug/debugger_win.cc",
274 "debug/dump_without_crashing.cc", 274 "debug/dump_without_crashing.cc",
275 "debug/dump_without_crashing.h", 275 "debug/dump_without_crashing.h",
276 "debug/gdi_debug_util_win.cc", 276 "debug/gdi_debug_util_win.cc",
277 "debug/gdi_debug_util_win.h", 277 "debug/gdi_debug_util_win.h",
278 278
279 # This file depends on files from the "debug/allocator" target, 279 # This file depends on files from the "debug/allocator" target,
280 # but this target does not depend on "debug/allocator" (see 280 # but this target does not depend on "debug/allocator" (see
281 # allocator.gyp for details). 281 # allocator.gyp for details).
282 "debug/activity_analyzer.cc",
283 "debug/activity_analyzer.h",
284 "debug/activity_tracker.cc",
285 "debug/activity_tracker.h",
282 "debug/leak_annotations.h", 286 "debug/leak_annotations.h",
283 "debug/leak_tracker.h", 287 "debug/leak_tracker.h",
284 "debug/proc_maps_linux.cc", 288 "debug/proc_maps_linux.cc",
285 "debug/proc_maps_linux.h", 289 "debug/proc_maps_linux.h",
286 "debug/profiler.cc", 290 "debug/profiler.cc",
287 "debug/profiler.h", 291 "debug/profiler.h",
288 "debug/stack_trace.cc", 292 "debug/stack_trace.cc",
289 "debug/stack_trace.h", 293 "debug/stack_trace.h",
290 "debug/stack_trace_android.cc", 294 "debug/stack_trace_android.cc",
291 "debug/stack_trace_posix.cc", 295 "debug/stack_trace_posix.cc",
(...skipping 1446 matching lines...) Expand 10 before | Expand all | Expand 10 after
1738 "cancelable_callback_unittest.cc", 1742 "cancelable_callback_unittest.cc",
1739 "command_line_unittest.cc", 1743 "command_line_unittest.cc",
1740 "containers/adapters_unittest.cc", 1744 "containers/adapters_unittest.cc",
1741 "containers/hash_tables_unittest.cc", 1745 "containers/hash_tables_unittest.cc",
1742 "containers/linked_list_unittest.cc", 1746 "containers/linked_list_unittest.cc",
1743 "containers/mru_cache_unittest.cc", 1747 "containers/mru_cache_unittest.cc",
1744 "containers/scoped_ptr_hash_map_unittest.cc", 1748 "containers/scoped_ptr_hash_map_unittest.cc",
1745 "containers/small_map_unittest.cc", 1749 "containers/small_map_unittest.cc",
1746 "containers/stack_container_unittest.cc", 1750 "containers/stack_container_unittest.cc",
1747 "cpu_unittest.cc", 1751 "cpu_unittest.cc",
1752 "debug/activity_analyzer_unittest.cc",
1753 "debug/activity_tracker_unittest.cc",
1748 "debug/crash_logging_unittest.cc", 1754 "debug/crash_logging_unittest.cc",
1749 "debug/debugger_unittest.cc", 1755 "debug/debugger_unittest.cc",
1750 "debug/leak_tracker_unittest.cc", 1756 "debug/leak_tracker_unittest.cc",
1751 "debug/proc_maps_linux_unittest.cc", 1757 "debug/proc_maps_linux_unittest.cc",
1752 "debug/stack_trace_unittest.cc", 1758 "debug/stack_trace_unittest.cc",
1753 "debug/task_annotator_unittest.cc", 1759 "debug/task_annotator_unittest.cc",
1754 "deferred_sequenced_task_runner_unittest.cc", 1760 "deferred_sequenced_task_runner_unittest.cc",
1755 "environment_unittest.cc", 1761 "environment_unittest.cc",
1756 "feature_list_unittest.cc", 1762 "feature_list_unittest.cc",
1757 "file_version_info_win_unittest.cc", 1763 "file_version_info_win_unittest.cc",
(...skipping 672 matching lines...) Expand 10 before | Expand all | Expand 10 after
2430 2436
2431 # GYP: //base.gyp:base_java_unittest_support 2437 # GYP: //base.gyp:base_java_unittest_support
2432 android_library("base_java_unittest_support") { 2438 android_library("base_java_unittest_support") {
2433 deps = [ 2439 deps = [
2434 ":base_java", 2440 ":base_java",
2435 ] 2441 ]
2436 java_files = 2442 java_files =
2437 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2443 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2438 } 2444 }
2439 } 2445 }
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