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

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