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

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

Issue 972203003: Fix GN NaCl Debug build of base. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase again 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/third_party/dynamic_annotations/BUILD.gn ('k') | build/config/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 source_set("trace_event") {
6 sources = [
7 "memory_dump_manager.cc",
8 "memory_dump_manager.h",
9 "memory_dump_provider.h",
10 "process_memory_dump.cc",
11 "process_memory_dump.h",
12 "process_memory_maps.cc",
13 "process_memory_maps.h",
14 "process_memory_maps_dump_provider.cc",
15 "process_memory_maps_dump_provider.h",
16 "process_memory_totals.cc",
17 "process_memory_totals.h",
18 "process_memory_totals_dump_provider.cc",
19 "process_memory_totals_dump_provider.h",
20 "trace_event.h",
21 "trace_event_android.cc",
22 "trace_event_argument.cc",
23 "trace_event_argument.h",
24 "trace_event_impl.cc",
25 "trace_event_impl.h",
26 "trace_event_impl_constants.cc",
27 "trace_event_memory.cc",
28 "trace_event_memory.h",
29 "trace_event_synthetic_delay.cc",
30 "trace_event_synthetic_delay.h",
31 "trace_event_system_stats_monitor.cc",
32 "trace_event_system_stats_monitor.h",
33 "trace_event_win.cc",
34 "trace_event_win.h",
35 ]
36
37 if (is_nacl) {
38 sources -= [
39 "process_memory_totals_dump_provider.cc",
40 "trace_event_system_stats_monitor.cc",
41 ]
42 }
43
44 defines = [ "BASE_IMPLEMENTATION" ]
45
46 deps = [
47 "//base/debug",
48 "//base/json",
49 "//base/memory",
50 "//base/process",
51 "//base/third_party/dynamic_annotations",
52 ]
53
54 allow_circular_includes_from = [
55 "//base/debug",
56 "//base/memory",
57 "//base/process",
58 ]
59
60 visibility = [ "//base/*" ]
61 }
OLDNEW
« no previous file with comments | « base/third_party/dynamic_annotations/BUILD.gn ('k') | build/config/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698