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

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: rebased 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') | no next file with comments »
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 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
273 "debug/debugger_posix.cc", 273 "debug/debugger_posix.cc",
274 "debug/debugger_win.cc", 274 "debug/debugger_win.cc",
275 "debug/dump_without_crashing.cc", 275 "debug/dump_without_crashing.cc",
276 "debug/dump_without_crashing.h", 276 "debug/dump_without_crashing.h",
277 "debug/gdi_debug_util_win.cc", 277 "debug/gdi_debug_util_win.cc",
278 "debug/gdi_debug_util_win.h", 278 "debug/gdi_debug_util_win.h",
279 279
280 # This file depends on files from the "debug/allocator" target, 280 # This file depends on files from the "debug/allocator" target,
281 # but this target does not depend on "debug/allocator" (see 281 # but this target does not depend on "debug/allocator" (see
282 # allocator.gyp for details). 282 # allocator.gyp for details).
283 "debug/activity_analyzer.cc",
284 "debug/activity_analyzer.h",
285 "debug/activity_tracker.cc",
286 "debug/activity_tracker.h",
283 "debug/leak_annotations.h", 287 "debug/leak_annotations.h",
284 "debug/leak_tracker.h", 288 "debug/leak_tracker.h",
285 "debug/proc_maps_linux.cc", 289 "debug/proc_maps_linux.cc",
286 "debug/proc_maps_linux.h", 290 "debug/proc_maps_linux.h",
287 "debug/profiler.cc", 291 "debug/profiler.cc",
288 "debug/profiler.h", 292 "debug/profiler.h",
289 "debug/stack_trace.cc", 293 "debug/stack_trace.cc",
290 "debug/stack_trace.h", 294 "debug/stack_trace.h",
291 "debug/stack_trace_android.cc", 295 "debug/stack_trace_android.cc",
292 "debug/stack_trace_posix.cc", 296 "debug/stack_trace_posix.cc",
(...skipping 1465 matching lines...) Expand 10 before | Expand all | Expand 10 after
1758 "cancelable_callback_unittest.cc", 1762 "cancelable_callback_unittest.cc",
1759 "command_line_unittest.cc", 1763 "command_line_unittest.cc",
1760 "containers/adapters_unittest.cc", 1764 "containers/adapters_unittest.cc",
1761 "containers/hash_tables_unittest.cc", 1765 "containers/hash_tables_unittest.cc",
1762 "containers/linked_list_unittest.cc", 1766 "containers/linked_list_unittest.cc",
1763 "containers/mru_cache_unittest.cc", 1767 "containers/mru_cache_unittest.cc",
1764 "containers/scoped_ptr_hash_map_unittest.cc", 1768 "containers/scoped_ptr_hash_map_unittest.cc",
1765 "containers/small_map_unittest.cc", 1769 "containers/small_map_unittest.cc",
1766 "containers/stack_container_unittest.cc", 1770 "containers/stack_container_unittest.cc",
1767 "cpu_unittest.cc", 1771 "cpu_unittest.cc",
1772 "debug/activity_analyzer_unittest.cc",
1773 "debug/activity_tracker_unittest.cc",
1768 "debug/crash_logging_unittest.cc", 1774 "debug/crash_logging_unittest.cc",
1769 "debug/debugger_unittest.cc", 1775 "debug/debugger_unittest.cc",
1770 "debug/leak_tracker_unittest.cc", 1776 "debug/leak_tracker_unittest.cc",
1771 "debug/proc_maps_linux_unittest.cc", 1777 "debug/proc_maps_linux_unittest.cc",
1772 "debug/stack_trace_unittest.cc", 1778 "debug/stack_trace_unittest.cc",
1773 "debug/task_annotator_unittest.cc", 1779 "debug/task_annotator_unittest.cc",
1774 "deferred_sequenced_task_runner_unittest.cc", 1780 "deferred_sequenced_task_runner_unittest.cc",
1775 "environment_unittest.cc", 1781 "environment_unittest.cc",
1776 "feature_list_unittest.cc", 1782 "feature_list_unittest.cc",
1777 "file_version_info_win_unittest.cc", 1783 "file_version_info_win_unittest.cc",
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
2452 2458
2453 # GYP: //base.gyp:base_java_unittest_support 2459 # GYP: //base.gyp:base_java_unittest_support
2454 android_library("base_java_unittest_support") { 2460 android_library("base_java_unittest_support") {
2455 deps = [ 2461 deps = [
2456 ":base_java", 2462 ":base_java",
2457 ] 2463 ]
2458 java_files = 2464 java_files =
2459 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2465 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2460 } 2466 }
2461 } 2467 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698