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

Side by Side Diff: base/BUILD.gn

Issue 2499583003: [OBSOLETE] tracing: split trace event filter logic out of TraceLog (Closed)
Patch Set: . Created 4 years, 1 month 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
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 886 matching lines...) Expand 10 before | Expand all | Expand 10 after
897 "timer/mock_timer.h", 897 "timer/mock_timer.h",
898 "timer/timer.cc", 898 "timer/timer.cc",
899 "timer/timer.h", 899 "timer/timer.h",
900 "trace_event/auto_open_close_event.cc", 900 "trace_event/auto_open_close_event.cc",
901 "trace_event/auto_open_close_event.h", 901 "trace_event/auto_open_close_event.h",
902 "trace_event/blame_context.cc", 902 "trace_event/blame_context.cc",
903 "trace_event/blame_context.h", 903 "trace_event/blame_context.h",
904 "trace_event/category_registry.cc", 904 "trace_event/category_registry.cc",
905 "trace_event/category_registry.h", 905 "trace_event/category_registry.h",
906 "trace_event/common/trace_event_common.h", 906 "trace_event/common/trace_event_common.h",
907 "trace_event/event_filter_registry.cc",
908 "trace_event/event_filter_registry.h",
909 "trace_event/event_name_filter.cc",
910 "trace_event/event_name_filter.h",
907 "trace_event/heap_profiler.h", 911 "trace_event/heap_profiler.h",
908 "trace_event/heap_profiler_allocation_context.cc", 912 "trace_event/heap_profiler_allocation_context.cc",
909 "trace_event/heap_profiler_allocation_context.h", 913 "trace_event/heap_profiler_allocation_context.h",
910 "trace_event/heap_profiler_allocation_context_tracker.cc", 914 "trace_event/heap_profiler_allocation_context_tracker.cc",
911 "trace_event/heap_profiler_allocation_context_tracker.h", 915 "trace_event/heap_profiler_allocation_context_tracker.h",
912 "trace_event/heap_profiler_allocation_register.cc", 916 "trace_event/heap_profiler_allocation_register.cc",
913 "trace_event/heap_profiler_allocation_register.h", 917 "trace_event/heap_profiler_allocation_register.h",
914 "trace_event/heap_profiler_allocation_register_posix.cc", 918 "trace_event/heap_profiler_allocation_register_posix.cc",
915 "trace_event/heap_profiler_allocation_register_win.cc", 919 "trace_event/heap_profiler_allocation_register_win.cc",
920 "trace_event/heap_profiler_event_filter.cc",
921 "trace_event/heap_profiler_event_filter.h",
916 "trace_event/heap_profiler_heap_dump_writer.cc", 922 "trace_event/heap_profiler_heap_dump_writer.cc",
917 "trace_event/heap_profiler_heap_dump_writer.h", 923 "trace_event/heap_profiler_heap_dump_writer.h",
918 "trace_event/heap_profiler_stack_frame_deduplicator.cc", 924 "trace_event/heap_profiler_stack_frame_deduplicator.cc",
919 "trace_event/heap_profiler_stack_frame_deduplicator.h", 925 "trace_event/heap_profiler_stack_frame_deduplicator.h",
920 "trace_event/heap_profiler_type_name_deduplicator.cc", 926 "trace_event/heap_profiler_type_name_deduplicator.cc",
921 "trace_event/heap_profiler_type_name_deduplicator.h", 927 "trace_event/heap_profiler_type_name_deduplicator.h",
922 "trace_event/java_heap_dump_provider_android.cc", 928 "trace_event/java_heap_dump_provider_android.cc",
923 "trace_event/java_heap_dump_provider_android.h", 929 "trace_event/java_heap_dump_provider_android.h",
924 "trace_event/malloc_dump_provider.cc", 930 "trace_event/malloc_dump_provider.cc",
925 "trace_event/malloc_dump_provider.h", 931 "trace_event/malloc_dump_provider.h",
(...skipping 1048 matching lines...) Expand 10 before | Expand all | Expand 10 after
1974 "threading/worker_pool_posix_unittest.cc", 1980 "threading/worker_pool_posix_unittest.cc",
1975 "threading/worker_pool_unittest.cc", 1981 "threading/worker_pool_unittest.cc",
1976 "time/pr_time_unittest.cc", 1982 "time/pr_time_unittest.cc",
1977 "time/time_unittest.cc", 1983 "time/time_unittest.cc",
1978 "time/time_win_unittest.cc", 1984 "time/time_win_unittest.cc",
1979 "timer/hi_res_timer_manager_unittest.cc", 1985 "timer/hi_res_timer_manager_unittest.cc",
1980 "timer/mock_timer_unittest.cc", 1986 "timer/mock_timer_unittest.cc",
1981 "timer/timer_unittest.cc", 1987 "timer/timer_unittest.cc",
1982 "tools_sanity_unittest.cc", 1988 "tools_sanity_unittest.cc",
1983 "trace_event/blame_context_unittest.cc", 1989 "trace_event/blame_context_unittest.cc",
1990 "trace_event/event_filter_registry_unittest.cc",
1991 "trace_event/event_name_filter_unittest.cc",
1984 "trace_event/heap_profiler_allocation_context_tracker_unittest.cc", 1992 "trace_event/heap_profiler_allocation_context_tracker_unittest.cc",
1985 "trace_event/heap_profiler_allocation_register_unittest.cc", 1993 "trace_event/heap_profiler_allocation_register_unittest.cc",
1986 "trace_event/heap_profiler_heap_dump_writer_unittest.cc", 1994 "trace_event/heap_profiler_heap_dump_writer_unittest.cc",
1987 "trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc", 1995 "trace_event/heap_profiler_stack_frame_deduplicator_unittest.cc",
1988 "trace_event/heap_profiler_type_name_deduplicator_unittest.cc", 1996 "trace_event/heap_profiler_type_name_deduplicator_unittest.cc",
1989 "trace_event/java_heap_dump_provider_android_unittest.cc", 1997 "trace_event/java_heap_dump_provider_android_unittest.cc",
1990 "trace_event/memory_allocator_dump_unittest.cc", 1998 "trace_event/memory_allocator_dump_unittest.cc",
1991 "trace_event/memory_dump_manager_unittest.cc", 1999 "trace_event/memory_dump_manager_unittest.cc",
1992 "trace_event/process_memory_dump_unittest.cc", 2000 "trace_event/process_memory_dump_unittest.cc",
1993 "trace_event/trace_category_unittest.cc", 2001 "trace_event/trace_category_unittest.cc",
(...skipping 486 matching lines...) Expand 10 before | Expand all | Expand 10 after
2480 } 2488 }
2481 2489
2482 fuzzer_test("base_json_correctness_fuzzer") { 2490 fuzzer_test("base_json_correctness_fuzzer") {
2483 sources = [ 2491 sources = [
2484 "json/correctness_fuzzer.cc", 2492 "json/correctness_fuzzer.cc",
2485 ] 2493 ]
2486 deps = [ 2494 deps = [
2487 ":base", 2495 ":base",
2488 ] 2496 ]
2489 } 2497 }
OLDNEW
« no previous file with comments | « no previous file | base/trace_event/category_registry.h » ('j') | base/trace_event/event_filter_registry.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698