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

Side by Side Diff: base/allocator/allocator.gyp

Issue 6623059: Support mixed allocation in browser vs subprocesses... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | base/allocator/allocator_shim.h » ('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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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 'jemalloc_dir': '../../third_party/jemalloc/chromium', 7 'jemalloc_dir': '../../third_party/jemalloc/chromium',
8 'tcmalloc_dir': '../../third_party/tcmalloc/chromium', 8 'tcmalloc_dir': '../../third_party/tcmalloc/chromium',
9 }, 9 },
10 'targets': [ 10 'targets': [
(...skipping 158 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 '<(tcmalloc_dir)/src/windows/preamble_patcher_with_stub.cc', 169 '<(tcmalloc_dir)/src/windows/preamble_patcher_with_stub.cc',
170 170
171 # jemalloc files 171 # jemalloc files
172 '<(jemalloc_dir)/jemalloc.c', 172 '<(jemalloc_dir)/jemalloc.c',
173 '<(jemalloc_dir)/jemalloc.h', 173 '<(jemalloc_dir)/jemalloc.h',
174 '<(jemalloc_dir)/ql.h', 174 '<(jemalloc_dir)/ql.h',
175 '<(jemalloc_dir)/qr.h', 175 '<(jemalloc_dir)/qr.h',
176 '<(jemalloc_dir)/rb.h', 176 '<(jemalloc_dir)/rb.h',
177 177
178 'allocator_shim.cc', 178 'allocator_shim.cc',
179 'allocator_shim.h',
179 'generic_allocators.cc', 180 'generic_allocators.cc',
180 'win_allocator.cc', 181 'win_allocator.cc',
181 ], 182 ],
182 # sources! means that these are not compiled directly. 183 # sources! means that these are not compiled directly.
183 'sources!': [ 184 'sources!': [
184 # Included by allocator_shim.cc for maximal inlining. 185 # Included by allocator_shim.cc for maximal inlining.
185 'generic_allocators.cc', 186 'generic_allocators.cc',
186 'win_allocator.cc', 187 'win_allocator.cc',
187 188
188 # We simply don't use these, but list them above so that IDE 189 # We simply don't use these, but list them above so that IDE
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
423 ], 424 ],
424 }], 425 }],
425 ], 426 ],
426 } 427 }
427 428
428 # Local Variables: 429 # Local Variables:
429 # tab-width:2 430 # tab-width:2
430 # indent-tabs-mode:nil 431 # indent-tabs-mode:nil
431 # End: 432 # End:
432 # vim: set expandtab tabstop=2 shiftwidth=2: 433 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | base/allocator/allocator_shim.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698