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

Side by Side Diff: base/base_nacl.gyp

Issue 1831763003: Reland: add dump provider for malloc heap profiler (https://codereview.chromium.org/1675183006/) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Diff from original cl Created 4 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'variables': { 6 'variables': {
7 'chromium_code': 1, 7 'chromium_code': 1,
8 }, 8 },
9 'includes': [ 9 'includes': [
10 # base.gypi must be included before common_untrusted.gypi. 10 # base.gypi must be included before common_untrusted.gypi.
(...skipping 22 matching lines...) Expand all
33 'base_switches.h', 33 'base_switches.h',
34 'strings/string16.cc', 34 'strings/string16.cc',
35 'sync_socket_nacl.cc', 35 'sync_socket_nacl.cc',
36 'time/time_posix.cc', 36 'time/time_posix.cc',
37 ], 37 ],
38 'compile_flags': [ 38 'compile_flags': [
39 '-fno-strict-aliasing', 39 '-fno-strict-aliasing',
40 ], 40 ],
41 }, 41 },
42 'dependencies': [ 42 'dependencies': [
43 'allocator/allocator.gyp:allocator_features#target',
43 'base.gyp:base_debugging_flags', 44 'base.gyp:base_debugging_flags',
44 'base.gyp:base_build_date', 45 'base.gyp:base_build_date',
45 ], 46 ],
46 }, 47 },
47 { 48 {
48 'target_name': 'base_i18n_nacl', 49 'target_name': 'base_i18n_nacl',
49 'type': 'none', 50 'type': 'none',
50 'variables': { 51 'variables': {
51 'base_i18n_target': 1, 52 'base_i18n_target': 1,
52 'nacl_untrusted_build': 1, 53 'nacl_untrusted_build': 1,
53 'nlib_target': 'libbase_i18n_nacl.a', 54 'nlib_target': 'libbase_i18n_nacl.a',
54 'build_glibc': 0, 55 'build_glibc': 0,
55 'build_newlib': 0, 56 'build_newlib': 0,
56 'build_irt': 0, 57 'build_irt': 0,
57 'build_pnacl_newlib': 1, 58 'build_pnacl_newlib': 1,
58 'sources': [ 59 'sources': [
59 'base_switches.cc', 60 'base_switches.cc',
60 'base_switches.h', 61 'base_switches.h',
61 'strings/string16.cc', 62 'strings/string16.cc',
62 'sync_socket_nacl.cc', 63 'sync_socket_nacl.cc',
63 'time/time_posix.cc', 64 'time/time_posix.cc',
64 ], 65 ],
65 }, 66 },
66 'dependencies': [ 67 'dependencies': [
68 'allocator/allocator.gyp:allocator_features#target',
67 'base.gyp:base_build_date', 69 'base.gyp:base_build_date',
68 '../third_party/icu/icu_nacl.gyp:icudata_nacl', 70 '../third_party/icu/icu_nacl.gyp:icudata_nacl',
69 '../third_party/icu/icu_nacl.gyp:icui18n_nacl', 71 '../third_party/icu/icu_nacl.gyp:icui18n_nacl',
70 '../third_party/icu/icu_nacl.gyp:icuuc_nacl', 72 '../third_party/icu/icu_nacl.gyp:icuuc_nacl',
71 ], 73 ],
72 }, 74 },
73 { 75 {
74 'target_name': 'base_nacl_nonsfi', 76 'target_name': 'base_nacl_nonsfi',
75 'type': 'none', 77 'type': 'none',
76 'variables': { 78 'variables': {
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 'rand_util_posix.cc', 114 'rand_util_posix.cc',
113 115
114 # For CancelableSyncSocket. 116 # For CancelableSyncSocket.
115 'sync_socket_nacl.cc', 117 'sync_socket_nacl.cc',
116 ], 118 ],
117 }, 119 },
118 'sources!': [ 120 'sources!': [
119 'rand_util_nacl.cc', 121 'rand_util_nacl.cc',
120 ], 122 ],
121 'dependencies': [ 123 'dependencies': [
124 'allocator/allocator.gyp:allocator_features#target',
122 'base.gyp:base_debugging_flags', 125 'base.gyp:base_debugging_flags',
123 'base.gyp:base_build_date', 126 'base.gyp:base_build_date',
124 'third_party/libevent/libevent_nacl_nonsfi.gyp:event_nacl_nonsfi', 127 'third_party/libevent/libevent_nacl_nonsfi.gyp:event_nacl_nonsfi',
125 ], 128 ],
126 }, 129 },
127 { 130 {
128 'target_name': 'test_support_base_nacl_nonsfi', 131 'target_name': 'test_support_base_nacl_nonsfi',
129 'type': 'none', 132 'type': 'none',
130 'variables': { 133 'variables': {
131 'nacl_untrusted_build': 1, 134 'nacl_untrusted_build': 1,
(...skipping 14 matching lines...) Expand all
146 'dependencies': [ 149 'dependencies': [
147 'base.gyp:base_build_date', 150 'base.gyp:base_build_date',
148 'base_nacl_nonsfi', 151 'base_nacl_nonsfi',
149 '../testing/gtest_nacl.gyp:gtest_nacl', 152 '../testing/gtest_nacl.gyp:gtest_nacl',
150 ], 153 ],
151 }, 154 },
152 ], 155 ],
153 }], 156 }],
154 ], 157 ],
155 } 158 }
OLDNEW
« no previous file with comments | « no previous file | base/trace_event/heap_profiler_allocation_context_tracker.h » ('j') | base/trace_event/malloc_dump_provider.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698