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

Side by Side Diff: base/BUILD.gn

Issue 2159323002: Add tracing AutoOpenCloseEvent. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Implement new design Created 4 years, 3 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
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 908 matching lines...) Expand 10 before | Expand all | Expand 10 after
919 "trace_event/memory_allocator_dump_guid.h", 919 "trace_event/memory_allocator_dump_guid.h",
920 "trace_event/memory_dump_manager.cc", 920 "trace_event/memory_dump_manager.cc",
921 "trace_event/memory_dump_manager.h", 921 "trace_event/memory_dump_manager.h",
922 "trace_event/memory_dump_provider.h", 922 "trace_event/memory_dump_provider.h",
923 "trace_event/memory_dump_request_args.cc", 923 "trace_event/memory_dump_request_args.cc",
924 "trace_event/memory_dump_request_args.h", 924 "trace_event/memory_dump_request_args.h",
925 "trace_event/memory_dump_session_state.cc", 925 "trace_event/memory_dump_session_state.cc",
926 "trace_event/memory_dump_session_state.h", 926 "trace_event/memory_dump_session_state.h",
927 "trace_event/memory_infra_background_whitelist.cc", 927 "trace_event/memory_infra_background_whitelist.cc",
928 "trace_event/memory_infra_background_whitelist.h", 928 "trace_event/memory_infra_background_whitelist.h",
929 "trace_event/persistent_async_event.cc",
930 "trace_event/persistent_async_event.h",
929 "trace_event/process_memory_dump.cc", 931 "trace_event/process_memory_dump.cc",
930 "trace_event/process_memory_dump.h", 932 "trace_event/process_memory_dump.h",
931 "trace_event/process_memory_maps.cc", 933 "trace_event/process_memory_maps.cc",
932 "trace_event/process_memory_maps.h", 934 "trace_event/process_memory_maps.h",
933 "trace_event/process_memory_totals.cc", 935 "trace_event/process_memory_totals.cc",
934 "trace_event/process_memory_totals.h", 936 "trace_event/process_memory_totals.h",
935 "trace_event/trace_buffer.cc", 937 "trace_event/trace_buffer.cc",
936 "trace_event/trace_buffer.h", 938 "trace_event/trace_buffer.h",
937 "trace_event/trace_config.cc", 939 "trace_event/trace_config.cc",
938 "trace_event/trace_config.h", 940 "trace_event/trace_config.h",
(...skipping 11 matching lines...) Expand all
950 "trace_event/trace_event_synthetic_delay.h", 952 "trace_event/trace_event_synthetic_delay.h",
951 "trace_event/trace_event_system_stats_monitor.cc", 953 "trace_event/trace_event_system_stats_monitor.cc",
952 "trace_event/trace_event_system_stats_monitor.h", 954 "trace_event/trace_event_system_stats_monitor.h",
953 "trace_event/trace_log.cc", 955 "trace_event/trace_log.cc",
954 "trace_event/trace_log.h", 956 "trace_event/trace_log.h",
955 "trace_event/trace_log_constants.cc", 957 "trace_event/trace_log_constants.cc",
956 "trace_event/trace_sampling_thread.cc", 958 "trace_event/trace_sampling_thread.cc",
957 "trace_event/trace_sampling_thread.h", 959 "trace_event/trace_sampling_thread.h",
958 "trace_event/tracing_agent.cc", 960 "trace_event/tracing_agent.cc",
959 "trace_event/tracing_agent.h", 961 "trace_event/tracing_agent.h",
962 "trace_event/vfc_persistent_async_event.cc",
963 "trace_event/vfc_persistent_async_event.h",
960 "tracked_objects.cc", 964 "tracked_objects.cc",
961 "tracked_objects.h", 965 "tracked_objects.h",
962 "tracking_info.cc", 966 "tracking_info.cc",
963 "tracking_info.h", 967 "tracking_info.h",
964 "tuple.h", 968 "tuple.h",
965 "value_conversions.cc", 969 "value_conversions.cc",
966 "value_conversions.h", 970 "value_conversions.h",
967 "values.cc", 971 "values.cc",
968 "values.h", 972 "values.h",
969 "version.cc", 973 "version.cc",
(...skipping 1470 matching lines...) Expand 10 before | Expand all | Expand 10 after
2440 android_library("base_java_unittest_support") { 2444 android_library("base_java_unittest_support") {
2441 deps = [ 2445 deps = [
2442 ":base_java", 2446 ":base_java",
2443 ] 2447 ]
2444 java_files = [ 2448 java_files = [
2445 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java", 2449 "test/android/java/src/org/chromium/base/ContentUriTestUtils.java",
2446 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java", 2450 "test/android/java/src/org/chromium/base/TestSystemMessageHandler.java",
2447 ] 2451 ]
2448 } 2452 }
2449 } 2453 }
OLDNEW
« no previous file with comments | « no previous file | base/trace_event/persistent_async_event.h » ('j') | base/trace_event/persistent_async_event.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698