OLD | NEW |
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 Loading... |
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 Loading... |
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: |
OLD | NEW |