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

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

Issue 11117010: Fix gyp for type_profiler to work for make. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 2 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 | no next file » | 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) 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 '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 'use_vtable_verify%': 0, 9 'use_vtable_verify%': 0,
10 }, 10 },
(...skipping 577 matching lines...) Expand 10 before | Expand all | Expand 10 after
588 '-fintercept-allocation-functions', 588 '-fintercept-allocation-functions',
589 ], 589 ],
590 'include_dirs': [ 590 'include_dirs': [
591 '../..', 591 '../..',
592 ], 592 ],
593 'sources': [ 593 'sources': [
594 'type_profiler.cc', 594 'type_profiler.cc',
595 'type_profiler.h', 595 'type_profiler.h',
596 'type_profiler_control.h', 596 'type_profiler_control.h',
597 ], 597 ],
598 'toolsets': ['host', 'target'],
598 }, 599 },
599 { 600 {
600 'target_name': 'type_profiler_tcmalloc', 601 'target_name': 'type_profiler_tcmalloc',
601 'type': 'static_library', 602 'type': 'static_library',
602 'dependencies!': [ 603 'dependencies!': [
603 'type_profiler', 604 'type_profiler',
604 ], 605 ],
605 'cflags_cc!': [ 606 'cflags_cc!': [
606 '-fintercept-allocation-functions', 607 '-fintercept-allocation-functions',
607 ], 608 ],
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
655 'sources': [ 656 'sources': [
656 'type_profiler_map_unittests.cc', 657 'type_profiler_map_unittests.cc',
657 '<(tcmalloc_dir)/src/gperftools/type_profiler_map.h', 658 '<(tcmalloc_dir)/src/gperftools/type_profiler_map.h',
658 '<(tcmalloc_dir)/src/type_profiler_map.cc', 659 '<(tcmalloc_dir)/src/type_profiler_map.cc',
659 ], 660 ],
660 }, 661 },
661 ], 662 ],
662 }], 663 }],
663 ], 664 ],
664 } 665 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698