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

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

Issue 1490763006: Fix buffer overflow in trace_event_android.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 | « no previous file | 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 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 "common/trace_event_common.h", 7 "common/trace_event_common.h",
8 "heap_profiler_allocation_context.cc", 8 "heap_profiler_allocation_context.cc",
9 "heap_profiler_allocation_context.h", 9 "heap_profiler_allocation_context.h",
10 "heap_profiler_allocation_context_tracker.cc", 10 "heap_profiler_allocation_context_tracker.cc",
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after
128 "trace_event_synthetic_delay_unittest.cc", 128 "trace_event_synthetic_delay_unittest.cc",
129 "trace_event_system_stats_monitor_unittest.cc", 129 "trace_event_system_stats_monitor_unittest.cc",
130 "trace_event_unittest.cc", 130 "trace_event_unittest.cc",
131 "winheap_dump_provider_win_unittest.cc", 131 "winheap_dump_provider_win_unittest.cc",
132 ] 132 ]
133 133
134 if (is_linux || is_android) { 134 if (is_linux || is_android) {
135 sources += [ "process_memory_maps_dump_provider_unittest.cc" ] 135 sources += [ "process_memory_maps_dump_provider_unittest.cc" ]
136 } 136 }
137 137
138 if (is_android) {
139 sources += [ "trace_event_android_unittest.cc" ]
140 }
141
138 deps = [ 142 deps = [
139 "//base/test:test_support", 143 "//base/test:test_support",
140 "//testing/gmock", 144 "//testing/gmock",
141 "//testing/gtest", 145 "//testing/gtest",
142 ] 146 ]
143 } 147 }
OLDNEW
« no previous file with comments | « no previous file | base/trace_event/trace_event.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698