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

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: addressed review comments 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.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 "debug/debugger_posix.cc", 274 "debug/debugger_posix.cc",
275 "debug/debugger_win.cc", 275 "debug/debugger_win.cc",
276 "debug/dump_without_crashing.cc", 276 "debug/dump_without_crashing.cc",
277 "debug/dump_without_crashing.h", 277 "debug/dump_without_crashing.h",
278 "debug/gdi_debug_util_win.cc", 278 "debug/gdi_debug_util_win.cc",
279 "debug/gdi_debug_util_win.h", 279 "debug/gdi_debug_util_win.h",
280 280
281 # This file depends on files from the "debug/allocator" target, 281 # This file depends on files from the "debug/allocator" target,
282 # but this target does not depend on "debug/allocator" (see 282 # but this target does not depend on "debug/allocator" (see
283 # allocator.gyp for details). 283 # allocator.gyp for details).
284 "debug/activity_analyzer.cc",
285 "debug/activity_analyzer.h",
286 "debug/activity_tracker.cc",
287 "debug/activity_tracker.h",
284 "debug/leak_annotations.h", 288 "debug/leak_annotations.h",
285 "debug/leak_tracker.h", 289 "debug/leak_tracker.h",
286 "debug/proc_maps_linux.cc", 290 "debug/proc_maps_linux.cc",
287 "debug/proc_maps_linux.h", 291 "debug/proc_maps_linux.h",
288 "debug/profiler.cc", 292 "debug/profiler.cc",
289 "debug/profiler.h", 293 "debug/profiler.h",
290 "debug/stack_trace.cc", 294 "debug/stack_trace.cc",
291 "debug/stack_trace.h", 295 "debug/stack_trace.h",
292 "debug/stack_trace_android.cc", 296 "debug/stack_trace_android.cc",
293 "debug/stack_trace_posix.cc", 297 "debug/stack_trace_posix.cc",
(...skipping 1455 matching lines...) Expand 10 before | Expand all | Expand 10 after
1749 "cancelable_callback_unittest.cc", 1753 "cancelable_callback_unittest.cc",
1750 "command_line_unittest.cc", 1754 "command_line_unittest.cc",
1751 "containers/adapters_unittest.cc", 1755 "containers/adapters_unittest.cc",
1752 "containers/hash_tables_unittest.cc", 1756 "containers/hash_tables_unittest.cc",
1753 "containers/linked_list_unittest.cc", 1757 "containers/linked_list_unittest.cc",
1754 "containers/mru_cache_unittest.cc", 1758 "containers/mru_cache_unittest.cc",
1755 "containers/scoped_ptr_hash_map_unittest.cc", 1759 "containers/scoped_ptr_hash_map_unittest.cc",
1756 "containers/small_map_unittest.cc", 1760 "containers/small_map_unittest.cc",
1757 "containers/stack_container_unittest.cc", 1761 "containers/stack_container_unittest.cc",
1758 "cpu_unittest.cc", 1762 "cpu_unittest.cc",
1763 "debug/activity_analyzer_unittest.cc",
1764 "debug/activity_tracker_unittest.cc",
1759 "debug/crash_logging_unittest.cc", 1765 "debug/crash_logging_unittest.cc",
1760 "debug/debugger_unittest.cc", 1766 "debug/debugger_unittest.cc",
1761 "debug/leak_tracker_unittest.cc", 1767 "debug/leak_tracker_unittest.cc",
1762 "debug/proc_maps_linux_unittest.cc", 1768 "debug/proc_maps_linux_unittest.cc",
1763 "debug/stack_trace_unittest.cc", 1769 "debug/stack_trace_unittest.cc",
1764 "debug/task_annotator_unittest.cc", 1770 "debug/task_annotator_unittest.cc",
1765 "deferred_sequenced_task_runner_unittest.cc", 1771 "deferred_sequenced_task_runner_unittest.cc",
1766 "environment_unittest.cc", 1772 "environment_unittest.cc",
1767 "feature_list_unittest.cc", 1773 "feature_list_unittest.cc",
1768 "file_version_info_win_unittest.cc", 1774 "file_version_info_win_unittest.cc",
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
2443 2449
2444 # GYP: //base.gyp:base_java_unittest_support 2450 # GYP: //base.gyp:base_java_unittest_support
2445 android_library("base_java_unittest_support") { 2451 android_library("base_java_unittest_support") {
2446 deps = [ 2452 deps = [
2447 ":base_java", 2453 ":base_java",
2448 ] 2454 ]
2449 java_files = 2455 java_files =
2450 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2456 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2451 } 2457 }
2452 } 2458 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | base/debug/activity_tracker.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698