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

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: Created 4 years, 5 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 890 matching lines...) Expand 10 before | Expand all | Expand 10 after
901 "trace_event/memory_allocator_dump_guid.h", 901 "trace_event/memory_allocator_dump_guid.h",
902 "trace_event/memory_dump_manager.cc", 902 "trace_event/memory_dump_manager.cc",
903 "trace_event/memory_dump_manager.h", 903 "trace_event/memory_dump_manager.h",
904 "trace_event/memory_dump_provider.h", 904 "trace_event/memory_dump_provider.h",
905 "trace_event/memory_dump_request_args.cc", 905 "trace_event/memory_dump_request_args.cc",
906 "trace_event/memory_dump_request_args.h", 906 "trace_event/memory_dump_request_args.h",
907 "trace_event/memory_dump_session_state.cc", 907 "trace_event/memory_dump_session_state.cc",
908 "trace_event/memory_dump_session_state.h", 908 "trace_event/memory_dump_session_state.h",
909 "trace_event/memory_infra_background_whitelist.cc", 909 "trace_event/memory_infra_background_whitelist.cc",
910 "trace_event/memory_infra_background_whitelist.h", 910 "trace_event/memory_infra_background_whitelist.h",
911 "trace_event/persistent_async_event.cc",
912 "trace_event/persistent_async_event.h",
911 "trace_event/process_memory_dump.cc", 913 "trace_event/process_memory_dump.cc",
912 "trace_event/process_memory_dump.h", 914 "trace_event/process_memory_dump.h",
913 "trace_event/process_memory_maps.cc", 915 "trace_event/process_memory_maps.cc",
914 "trace_event/process_memory_maps.h", 916 "trace_event/process_memory_maps.h",
915 "trace_event/process_memory_totals.cc", 917 "trace_event/process_memory_totals.cc",
916 "trace_event/process_memory_totals.h", 918 "trace_event/process_memory_totals.h",
917 "trace_event/trace_buffer.cc", 919 "trace_event/trace_buffer.cc",
918 "trace_event/trace_buffer.h", 920 "trace_event/trace_buffer.h",
919 "trace_event/trace_config.cc", 921 "trace_event/trace_config.cc",
920 "trace_event/trace_config.h", 922 "trace_event/trace_config.h",
(...skipping 11 matching lines...) Expand all
932 "trace_event/trace_event_synthetic_delay.h", 934 "trace_event/trace_event_synthetic_delay.h",
933 "trace_event/trace_event_system_stats_monitor.cc", 935 "trace_event/trace_event_system_stats_monitor.cc",
934 "trace_event/trace_event_system_stats_monitor.h", 936 "trace_event/trace_event_system_stats_monitor.h",
935 "trace_event/trace_log.cc", 937 "trace_event/trace_log.cc",
936 "trace_event/trace_log.h", 938 "trace_event/trace_log.h",
937 "trace_event/trace_log_constants.cc", 939 "trace_event/trace_log_constants.cc",
938 "trace_event/trace_sampling_thread.cc", 940 "trace_event/trace_sampling_thread.cc",
939 "trace_event/trace_sampling_thread.h", 941 "trace_event/trace_sampling_thread.h",
940 "trace_event/tracing_agent.cc", 942 "trace_event/tracing_agent.cc",
941 "trace_event/tracing_agent.h", 943 "trace_event/tracing_agent.h",
944 "trace_event/vfc_persistent_async_event.cc",
945 "trace_event/vfc_persistent_async_event.h",
942 "trace_event/winheap_dump_provider_win.cc", 946 "trace_event/winheap_dump_provider_win.cc",
943 "trace_event/winheap_dump_provider_win.h", 947 "trace_event/winheap_dump_provider_win.h",
944 "tracked_objects.cc", 948 "tracked_objects.cc",
945 "tracked_objects.h", 949 "tracked_objects.h",
946 "tracking_info.cc", 950 "tracking_info.cc",
947 "tracking_info.h", 951 "tracking_info.h",
948 "tuple.h", 952 "tuple.h",
949 "value_conversions.cc", 953 "value_conversions.cc",
950 "value_conversions.h", 954 "value_conversions.h",
951 "values.cc", 955 "values.cc",
(...skipping 1469 matching lines...) Expand 10 before | Expand all | Expand 10 after
2421 2425
2422 # GYP: //base.gyp:base_java_unittest_support 2426 # GYP: //base.gyp:base_java_unittest_support
2423 android_library("base_java_unittest_support") { 2427 android_library("base_java_unittest_support") {
2424 deps = [ 2428 deps = [
2425 ":base_java", 2429 ":base_java",
2426 ] 2430 ]
2427 java_files = 2431 java_files =
2428 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 2432 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
2429 } 2433 }
2430 } 2434 }
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