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

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

Issue 1014923002: [tracing] Move GN/gyp build files under trace_event (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 9 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 | « base/base.gypi ('k') | base/trace_event/trace_event.gypi » ('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) 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",
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
56 ] 56 ]
57 57
58 allow_circular_includes_from = [ 58 allow_circular_includes_from = [
59 "//base/debug", 59 "//base/debug",
60 "//base/memory", 60 "//base/memory",
61 "//base/process", 61 "//base/process",
62 ] 62 ]
63 63
64 visibility = [ "//base/*" ] 64 visibility = [ "//base/*" ]
65 } 65 }
66
67 source_set("trace_event_unittests") {
68 testonly = true
69 sources = [
70 "memory_allocator_dump_unittest.cc",
71 "memory_dump_manager_unittest.cc",
72 "process_memory_maps_dump_provider_unittest.cc",
73 "process_memory_totals_dump_provider_unittest.cc",
74 "trace_event_argument_unittest.cc",
75 "trace_event_memory_unittest.cc",
76 "trace_event_synthetic_delay_unittest.cc",
77 "trace_event_system_stats_monitor_unittest.cc",
78 "trace_event_unittest.cc",
79 "trace_event_win_unittest.cc",
80 ]
81
82 deps = [
83 "//base/test:test_support",
84 "//testing/gmock",
85 "//testing/gtest",
86 ]
87 }
OLDNEW
« no previous file with comments | « base/base.gypi ('k') | base/trace_event/trace_event.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698