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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 177353002: Add use_allocator instead of linux_use_tcmalloc to switch the allocator. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: ready with use_allocator Created 6 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
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'chrome', 8 'target_name': 'chrome',
9 'type': 'none', 9 'type': 'none',
10 'dependencies': [ 'chrome_initial', ], 10 'dependencies': [ 'chrome_initial', ],
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 'app/resources/manpage.1.in', 135 'app/resources/manpage.1.in',
136 '<@(_outputs)', 136 '<@(_outputs)',
137 '-e', 's/@@NAME@@/<(name)/', 137 '-e', 's/@@NAME@@/<(name)/',
138 '-e', 's/@@FILENAME@@/<(filename)/', 138 '-e', 's/@@FILENAME@@/<(filename)/',
139 '-e', 's/@@CONFDIR@@/<(confdir)/', 139 '-e', 's/@@CONFDIR@@/<(confdir)/',
140 ], 140 ],
141 'message': 'Generating manpage' 141 'message': 'Generating manpage'
142 }, 142 },
143 ], 143 ],
144 'conditions': [ 144 'conditions': [
145 ['linux_use_tcmalloc==1', { 145 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554
146 ['(use_allocator!="none" and use_allocator!="see_use_tcmalloc") or ( use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1)', {
146 'dependencies': [ 147 'dependencies': [
147 '<(allocator_target)', 148 '<(allocator_target)',
148 ], 149 ],
149 }, 150 },
150 ], 151 ],
151 ['profiling==0 and linux_disable_pie==0', { 152 ['profiling==0 and linux_disable_pie==0', {
152 'ldflags': [ 153 'ldflags': [
153 '-pie', 154 '-pie',
154 ], 155 ],
155 }], 156 }],
(...skipping 535 matching lines...) Expand 10 before | Expand all | Expand 10 after
691 'dependencies': [ 692 'dependencies': [
692 'chrome_nacl_win64', 693 'chrome_nacl_win64',
693 ], 694 ],
694 }], 695 }],
695 ], 696 ],
696 }, 697 },
697 ], 698 ],
698 }], 699 }],
699 ], 700 ],
700 } 701 }
OLDNEW
« ash/ash.gyp ('K') | « cc/cc_tests.gyp ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698