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

Side by Side Diff: base/trace_event/BUILD.gn

Issue 1038453002: Add option to export tracing events to ETW. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add missing dependency in base.gyp Created 5 years, 8 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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 source_set("trace_event") { 5 source_set("trace_event") {
6 sources = [ 6 sources = [
7 "memory_allocator_attributes.h", 7 "memory_allocator_attributes.h",
8 "memory_allocator_dump.cc", 8 "memory_allocator_dump.cc",
9 "memory_allocator_dump.h", 9 "memory_allocator_dump.h",
10 "memory_dump_manager.cc", 10 "memory_dump_manager.cc",
11 "memory_dump_manager.h", 11 "memory_dump_manager.h",
12 "memory_dump_provider.cc", 12 "memory_dump_provider.cc",
13 "memory_dump_provider.h", 13 "memory_dump_provider.h",
14 "process_memory_dump.cc", 14 "process_memory_dump.cc",
15 "process_memory_dump.h", 15 "process_memory_dump.h",
16 "process_memory_maps.cc", 16 "process_memory_maps.cc",
17 "process_memory_maps.h", 17 "process_memory_maps.h",
18 "process_memory_maps_dump_provider.cc", 18 "process_memory_maps_dump_provider.cc",
19 "process_memory_maps_dump_provider.h", 19 "process_memory_maps_dump_provider.h",
20 "process_memory_totals.cc", 20 "process_memory_totals.cc",
21 "process_memory_totals.h", 21 "process_memory_totals.h",
22 "process_memory_totals_dump_provider.cc", 22 "process_memory_totals_dump_provider.cc",
23 "process_memory_totals_dump_provider.h", 23 "process_memory_totals_dump_provider.h",
24 "trace_event.h", 24 "trace_event.h",
25 "trace_event_android.cc", 25 "trace_event_android.cc",
26 "trace_event_argument.cc", 26 "trace_event_argument.cc",
27 "trace_event_argument.h", 27 "trace_event_argument.h",
28 "trace_event_etw_export_win.cc",
29 "trace_event_etw_export_win.h",
28 "trace_event_impl.cc", 30 "trace_event_impl.cc",
29 "trace_event_impl.h", 31 "trace_event_impl.h",
30 "trace_event_impl_constants.cc", 32 "trace_event_impl_constants.cc",
31 "trace_event_memory.cc", 33 "trace_event_memory.cc",
32 "trace_event_memory.h", 34 "trace_event_memory.h",
33 "trace_event_synthetic_delay.cc", 35 "trace_event_synthetic_delay.cc",
34 "trace_event_synthetic_delay.h", 36 "trace_event_synthetic_delay.h",
35 "trace_event_system_stats_monitor.cc", 37 "trace_event_system_stats_monitor.cc",
36 "trace_event_system_stats_monitor.h", 38 "trace_event_system_stats_monitor.h",
37 "trace_event_win.cc", 39 "trace_event_win.cc",
(...skipping 10 matching lines...) Expand all
48 configs += [ "//base:base_implementation" ] 50 configs += [ "//base:base_implementation" ]
49 51
50 deps = [ 52 deps = [
51 "//base/debug", 53 "//base/debug",
52 "//base/json", 54 "//base/json",
53 "//base/memory", 55 "//base/memory",
54 "//base/process", 56 "//base/process",
55 "//base/third_party/dynamic_annotations", 57 "//base/third_party/dynamic_annotations",
56 ] 58 ]
57 59
60 if (is_win) {
61 deps += [ "//base/trace_event/etw_manifest:chrome_events_win" ]
62 }
63
58 allow_circular_includes_from = [ 64 allow_circular_includes_from = [
59 "//base/debug", 65 "//base/debug",
60 "//base/memory", 66 "//base/memory",
61 "//base/process", 67 "//base/process",
62 ] 68 ]
63 69
64 visibility = [ "//base/*" ] 70 visibility = [ "//base/*" ]
65 } 71 }
66 72
67 source_set("trace_event_unittests") { 73 source_set("trace_event_unittests") {
(...skipping 10 matching lines...) Expand all
78 "trace_event_unittest.cc", 84 "trace_event_unittest.cc",
79 "trace_event_win_unittest.cc", 85 "trace_event_win_unittest.cc",
80 ] 86 ]
81 87
82 deps = [ 88 deps = [
83 "//base/test:test_support", 89 "//base/test:test_support",
84 "//testing/gmock", 90 "//testing/gmock",
85 "//testing/gtest", 91 "//testing/gtest",
86 ] 92 ]
87 } 93 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698