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

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: cleaned up for review 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 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_analyzer.cc",
277 "debug/activity_analyzer.h",
278 "debug/activity_tracker.cc",
279 "debug/activity_tracker.h",
276 "debug/leak_annotations.h", 280 "debug/leak_annotations.h",
277 "debug/leak_tracker.h", 281 "debug/leak_tracker.h",
278 "debug/proc_maps_linux.cc", 282 "debug/proc_maps_linux.cc",
279 "debug/proc_maps_linux.h", 283 "debug/proc_maps_linux.h",
280 "debug/profiler.cc", 284 "debug/profiler.cc",
281 "debug/profiler.h", 285 "debug/profiler.h",
282 "debug/stack_trace.cc", 286 "debug/stack_trace.cc",
283 "debug/stack_trace.h", 287 "debug/stack_trace.h",
284 "debug/stack_trace_android.cc", 288 "debug/stack_trace_android.cc",
285 "debug/stack_trace_posix.cc", 289 "debug/stack_trace_posix.cc",
(...skipping 1425 matching lines...) Expand 10 before | Expand all | Expand 10 after
1711 "cancelable_callback_unittest.cc", 1715 "cancelable_callback_unittest.cc",
1712 "command_line_unittest.cc", 1716 "command_line_unittest.cc",
1713 "containers/adapters_unittest.cc", 1717 "containers/adapters_unittest.cc",
1714 "containers/hash_tables_unittest.cc", 1718 "containers/hash_tables_unittest.cc",
1715 "containers/linked_list_unittest.cc", 1719 "containers/linked_list_unittest.cc",
1716 "containers/mru_cache_unittest.cc", 1720 "containers/mru_cache_unittest.cc",
1717 "containers/scoped_ptr_hash_map_unittest.cc", 1721 "containers/scoped_ptr_hash_map_unittest.cc",
1718 "containers/small_map_unittest.cc", 1722 "containers/small_map_unittest.cc",
1719 "containers/stack_container_unittest.cc", 1723 "containers/stack_container_unittest.cc",
1720 "cpu_unittest.cc", 1724 "cpu_unittest.cc",
1725 "debug/activity_analyzer_unittest.cc",
1726 "debug/activity_tracker_unittest.cc",
1721 "debug/crash_logging_unittest.cc", 1727 "debug/crash_logging_unittest.cc",
1722 "debug/debugger_unittest.cc", 1728 "debug/debugger_unittest.cc",
1723 "debug/leak_tracker_unittest.cc", 1729 "debug/leak_tracker_unittest.cc",
1724 "debug/proc_maps_linux_unittest.cc", 1730 "debug/proc_maps_linux_unittest.cc",
1725 "debug/stack_trace_unittest.cc", 1731 "debug/stack_trace_unittest.cc",
1726 "debug/task_annotator_unittest.cc", 1732 "debug/task_annotator_unittest.cc",
1727 "deferred_sequenced_task_runner_unittest.cc", 1733 "deferred_sequenced_task_runner_unittest.cc",
1728 "environment_unittest.cc", 1734 "environment_unittest.cc",
1729 "feature_list_unittest.cc", 1735 "feature_list_unittest.cc",
1730 "file_version_info_unittest.cc", 1736 "file_version_info_unittest.cc",
(...skipping 658 matching lines...) Expand 10 before | Expand all | Expand 10 after
2389 2395
2390 # GYP: //base.gyp:base_java_unittest_support 2396 # GYP: //base.gyp:base_java_unittest_support
2391 android_library("base_java_unittest_support") { 2397 android_library("base_java_unittest_support") {
2392 deps = [ 2398 deps = [
2393 ":base_java", 2399 ":base_java",
2394 ] 2400 ]
2395 java_files = 2401 java_files =
2396 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2402 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2397 } 2403 }
2398 } 2404 }
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