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

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: track locks and waitable events 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_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 255 matching lines...) Expand 10 before | Expand all | Expand 10 after
266 "debug/debugger_posix.cc", 266 "debug/debugger_posix.cc",
267 "debug/debugger_win.cc", 267 "debug/debugger_win.cc",
268 "debug/dump_without_crashing.cc", 268 "debug/dump_without_crashing.cc",
269 "debug/dump_without_crashing.h", 269 "debug/dump_without_crashing.h",
270 "debug/gdi_debug_util_win.cc", 270 "debug/gdi_debug_util_win.cc",
271 "debug/gdi_debug_util_win.h", 271 "debug/gdi_debug_util_win.h",
272 272
273 # This file depends on files from the "debug/allocator" target, 273 # This file depends on files from the "debug/allocator" target,
274 # but this target does not depend on "debug/allocator" (see 274 # but this target does not depend on "debug/allocator" (see
275 # allocator.gyp for details). 275 # allocator.gyp for details).
276 "debug/activity_tracker.cc",
277 "debug/activity_tracker.h",
276 "debug/leak_annotations.h", 278 "debug/leak_annotations.h",
277 "debug/leak_tracker.h", 279 "debug/leak_tracker.h",
278 "debug/proc_maps_linux.cc", 280 "debug/proc_maps_linux.cc",
279 "debug/proc_maps_linux.h", 281 "debug/proc_maps_linux.h",
280 "debug/profiler.cc", 282 "debug/profiler.cc",
281 "debug/profiler.h", 283 "debug/profiler.h",
282 "debug/stack_trace.cc", 284 "debug/stack_trace.cc",
283 "debug/stack_trace.h", 285 "debug/stack_trace.h",
284 "debug/stack_trace_android.cc", 286 "debug/stack_trace_android.cc",
285 "debug/stack_trace_posix.cc", 287 "debug/stack_trace_posix.cc",
(...skipping 1420 matching lines...) Expand 10 before | Expand all | Expand 10 after
1706 "cancelable_callback_unittest.cc", 1708 "cancelable_callback_unittest.cc",
1707 "command_line_unittest.cc", 1709 "command_line_unittest.cc",
1708 "containers/adapters_unittest.cc", 1710 "containers/adapters_unittest.cc",
1709 "containers/hash_tables_unittest.cc", 1711 "containers/hash_tables_unittest.cc",
1710 "containers/linked_list_unittest.cc", 1712 "containers/linked_list_unittest.cc",
1711 "containers/mru_cache_unittest.cc", 1713 "containers/mru_cache_unittest.cc",
1712 "containers/scoped_ptr_hash_map_unittest.cc", 1714 "containers/scoped_ptr_hash_map_unittest.cc",
1713 "containers/small_map_unittest.cc", 1715 "containers/small_map_unittest.cc",
1714 "containers/stack_container_unittest.cc", 1716 "containers/stack_container_unittest.cc",
1715 "cpu_unittest.cc", 1717 "cpu_unittest.cc",
1718 "debug/activity_tracker_unittest.cc",
1716 "debug/crash_logging_unittest.cc", 1719 "debug/crash_logging_unittest.cc",
1717 "debug/debugger_unittest.cc", 1720 "debug/debugger_unittest.cc",
1718 "debug/leak_tracker_unittest.cc", 1721 "debug/leak_tracker_unittest.cc",
1719 "debug/proc_maps_linux_unittest.cc", 1722 "debug/proc_maps_linux_unittest.cc",
1720 "debug/stack_trace_unittest.cc", 1723 "debug/stack_trace_unittest.cc",
1721 "debug/task_annotator_unittest.cc", 1724 "debug/task_annotator_unittest.cc",
1722 "deferred_sequenced_task_runner_unittest.cc", 1725 "deferred_sequenced_task_runner_unittest.cc",
1723 "environment_unittest.cc", 1726 "environment_unittest.cc",
1724 "feature_list_unittest.cc", 1727 "feature_list_unittest.cc",
1725 "file_version_info_unittest.cc", 1728 "file_version_info_unittest.cc",
(...skipping 650 matching lines...) Expand 10 before | Expand all | Expand 10 after
2376 2379
2377 # GYP: //base.gyp:base_java_unittest_support 2380 # GYP: //base.gyp:base_java_unittest_support
2378 android_library("base_java_unittest_support") { 2381 android_library("base_java_unittest_support") {
2379 deps = [ 2382 deps = [
2380 ":base_java", 2383 ":base_java",
2381 ] 2384 ]
2382 java_files = 2385 java_files =
2383 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2386 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2384 } 2387 }
2385 } 2388 }
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