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

Side by Side Diff: base/BUILD.gn

Issue 2221343002: Revert "Track thread activities in order to diagnose hangs." (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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",
287 "debug/leak_annotations.h", 283 "debug/leak_annotations.h",
288 "debug/leak_tracker.h", 284 "debug/leak_tracker.h",
289 "debug/proc_maps_linux.cc", 285 "debug/proc_maps_linux.cc",
290 "debug/proc_maps_linux.h", 286 "debug/proc_maps_linux.h",
291 "debug/profiler.cc", 287 "debug/profiler.cc",
292 "debug/profiler.h", 288 "debug/profiler.h",
293 "debug/stack_trace.cc", 289 "debug/stack_trace.cc",
294 "debug/stack_trace.h", 290 "debug/stack_trace.h",
295 "debug/stack_trace_android.cc", 291 "debug/stack_trace_android.cc",
296 "debug/stack_trace_posix.cc", 292 "debug/stack_trace_posix.cc",
(...skipping 1457 matching lines...) Expand 10 before | Expand all | Expand 10 after
1754 "cancelable_callback_unittest.cc", 1750 "cancelable_callback_unittest.cc",
1755 "command_line_unittest.cc", 1751 "command_line_unittest.cc",
1756 "containers/adapters_unittest.cc", 1752 "containers/adapters_unittest.cc",
1757 "containers/hash_tables_unittest.cc", 1753 "containers/hash_tables_unittest.cc",
1758 "containers/linked_list_unittest.cc", 1754 "containers/linked_list_unittest.cc",
1759 "containers/mru_cache_unittest.cc", 1755 "containers/mru_cache_unittest.cc",
1760 "containers/scoped_ptr_hash_map_unittest.cc", 1756 "containers/scoped_ptr_hash_map_unittest.cc",
1761 "containers/small_map_unittest.cc", 1757 "containers/small_map_unittest.cc",
1762 "containers/stack_container_unittest.cc", 1758 "containers/stack_container_unittest.cc",
1763 "cpu_unittest.cc", 1759 "cpu_unittest.cc",
1764 "debug/activity_analyzer_unittest.cc",
1765 "debug/activity_tracker_unittest.cc",
1766 "debug/crash_logging_unittest.cc", 1760 "debug/crash_logging_unittest.cc",
1767 "debug/debugger_unittest.cc", 1761 "debug/debugger_unittest.cc",
1768 "debug/leak_tracker_unittest.cc", 1762 "debug/leak_tracker_unittest.cc",
1769 "debug/proc_maps_linux_unittest.cc", 1763 "debug/proc_maps_linux_unittest.cc",
1770 "debug/stack_trace_unittest.cc", 1764 "debug/stack_trace_unittest.cc",
1771 "debug/task_annotator_unittest.cc", 1765 "debug/task_annotator_unittest.cc",
1772 "deferred_sequenced_task_runner_unittest.cc", 1766 "deferred_sequenced_task_runner_unittest.cc",
1773 "environment_unittest.cc", 1767 "environment_unittest.cc",
1774 "feature_list_unittest.cc", 1768 "feature_list_unittest.cc",
1775 "file_version_info_win_unittest.cc", 1769 "file_version_info_win_unittest.cc",
(...skipping 674 matching lines...) Expand 10 before | Expand all | Expand 10 after
2450 2444
2451 # GYP: //base.gyp:base_java_unittest_support 2445 # GYP: //base.gyp:base_java_unittest_support
2452 android_library("base_java_unittest_support") { 2446 android_library("base_java_unittest_support") {
2453 deps = [ 2447 deps = [
2454 ":base_java", 2448 ":base_java",
2455 ] 2449 ]
2456 java_files = 2450 java_files =
2457 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2451 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2458 } 2452 }
2459 } 2453 }
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