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

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

Issue 1992005: Update dynamic annotations and move them to base/third_party (Closed)
Patch Set: rebased Created 10 years, 7 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 | « no previous file | base/atomic_ref_count.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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
50 '<(tcmalloc_dir)/src/addressmap-inl.h', 50 '<(tcmalloc_dir)/src/addressmap-inl.h',
51 '<(tcmalloc_dir)/src/base/atomicops-internals-linuxppc.h', 51 '<(tcmalloc_dir)/src/base/atomicops-internals-linuxppc.h',
52 '<(tcmalloc_dir)/src/base/atomicops-internals-macosx.h', 52 '<(tcmalloc_dir)/src/base/atomicops-internals-macosx.h',
53 '<(tcmalloc_dir)/src/base/atomicops-internals-x86-msvc.h', 53 '<(tcmalloc_dir)/src/base/atomicops-internals-x86-msvc.h',
54 '<(tcmalloc_dir)/src/base/atomicops-internals-x86.cc', 54 '<(tcmalloc_dir)/src/base/atomicops-internals-x86.cc',
55 '<(tcmalloc_dir)/src/base/atomicops-internals-x86.h', 55 '<(tcmalloc_dir)/src/base/atomicops-internals-x86.h',
56 '<(tcmalloc_dir)/src/base/atomicops.h', 56 '<(tcmalloc_dir)/src/base/atomicops.h',
57 '<(tcmalloc_dir)/src/base/basictypes.h', 57 '<(tcmalloc_dir)/src/base/basictypes.h',
58 '<(tcmalloc_dir)/src/base/commandlineflags.h', 58 '<(tcmalloc_dir)/src/base/commandlineflags.h',
59 '<(tcmalloc_dir)/src/base/cycleclock.h', 59 '<(tcmalloc_dir)/src/base/cycleclock.h',
60 '<(tcmalloc_dir)/src/base/dynamic_annotations.cc', 60 # We don't list dynamic_annotations.cc since its copy is already
61 # present in the dynamic_annotations target.
61 '<(tcmalloc_dir)/src/base/dynamic_annotations.h', 62 '<(tcmalloc_dir)/src/base/dynamic_annotations.h',
62 '<(tcmalloc_dir)/src/base/elfcore.h', 63 '<(tcmalloc_dir)/src/base/elfcore.h',
63 '<(tcmalloc_dir)/src/base/googleinit.h', 64 '<(tcmalloc_dir)/src/base/googleinit.h',
64 '<(tcmalloc_dir)/src/base/linux_syscall_support.h', 65 '<(tcmalloc_dir)/src/base/linux_syscall_support.h',
65 '<(tcmalloc_dir)/src/base/linuxthreads.cc', 66 '<(tcmalloc_dir)/src/base/linuxthreads.cc',
66 '<(tcmalloc_dir)/src/base/linuxthreads.h', 67 '<(tcmalloc_dir)/src/base/linuxthreads.h',
67 '<(tcmalloc_dir)/src/base/logging.cc', 68 '<(tcmalloc_dir)/src/base/logging.cc',
68 '<(tcmalloc_dir)/src/base/logging.h', 69 '<(tcmalloc_dir)/src/base/logging.h',
69 '<(tcmalloc_dir)/src/base/low_level_alloc.cc', 70 '<(tcmalloc_dir)/src/base/low_level_alloc.cc',
70 '<(tcmalloc_dir)/src/base/low_level_alloc.h', 71 '<(tcmalloc_dir)/src/base/low_level_alloc.h',
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 '<(tcmalloc_dir)/src/windows/mingw.h', 236 '<(tcmalloc_dir)/src/windows/mingw.h',
236 '<(tcmalloc_dir)/src/windows/mini_disassembler.cc', 237 '<(tcmalloc_dir)/src/windows/mini_disassembler.cc',
237 '<(tcmalloc_dir)/src/windows/mini_disassembler.h', 238 '<(tcmalloc_dir)/src/windows/mini_disassembler.h',
238 '<(tcmalloc_dir)/src/windows/mini_disassembler_types.h', 239 '<(tcmalloc_dir)/src/windows/mini_disassembler_types.h',
239 '<(tcmalloc_dir)/src/windows/override_functions.cc', 240 '<(tcmalloc_dir)/src/windows/override_functions.cc',
240 '<(tcmalloc_dir)/src/windows/patch_functions.cc', 241 '<(tcmalloc_dir)/src/windows/patch_functions.cc',
241 '<(tcmalloc_dir)/src/windows/preamble_patcher.cc', 242 '<(tcmalloc_dir)/src/windows/preamble_patcher.cc',
242 '<(tcmalloc_dir)/src/windows/preamble_patcher.h', 243 '<(tcmalloc_dir)/src/windows/preamble_patcher.h',
243 '<(tcmalloc_dir)/src/windows/preamble_patcher_with_stub.cc', 244 '<(tcmalloc_dir)/src/windows/preamble_patcher_with_stub.cc',
244 ], 245 ],
246 'dependencies': [
247 '../base.gyp:dynamic_annotations',
248 ],
245 'msvs_settings': { 249 'msvs_settings': {
246 # TODO(sgk): merge this with build/common.gypi settings 250 # TODO(sgk): merge this with build/common.gypi settings
247 'VCLibrarianTool=': { 251 'VCLibrarianTool=': {
248 'AdditionalOptions': ['/ignore:4006,4221'], 252 'AdditionalOptions': ['/ignore:4006,4221'],
249 'AdditionalLibraryDirectories': 253 'AdditionalLibraryDirectories':
250 ['<(DEPTH)/third_party/platformsdk_win7/files/Lib'], 254 ['<(DEPTH)/third_party/platformsdk_win7/files/Lib'],
251 }, 255 },
252 'VCLinkerTool': { 256 'VCLinkerTool': {
253 'AdditionalOptions': ['/ignore:4006'], 257 'AdditionalOptions': ['/ignore:4006'],
254 }, 258 },
(...skipping 154 matching lines...) Expand 10 before | Expand all | Expand 10 after
409 ], 413 ],
410 }], 414 }],
411 ], 415 ],
412 } 416 }
413 417
414 # Local Variables: 418 # Local Variables:
415 # tab-width:2 419 # tab-width:2
416 # indent-tabs-mode:nil 420 # indent-tabs-mode:nil
417 # End: 421 # End:
418 # vim: set expandtab tabstop=2 shiftwidth=2: 422 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | base/atomic_ref_count.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698