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

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: rebased 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
« no previous file with comments | « cc/cc_tests.gyp ('k') | chrome/chrome_tests.gypi » ('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) 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 543 matching lines...) Expand 10 before | Expand all | Expand 10 after
699 'dependencies': [ 700 'dependencies': [
700 'chrome_nacl_win64', 701 'chrome_nacl_win64',
701 ], 702 ],
702 }], 703 }],
703 ], 704 ],
704 }, 705 },
705 ], 706 ],
706 }], 707 }],
707 ], 708 ],
708 } 709 }
OLDNEW
« no previous file with comments | « cc/cc_tests.gyp ('k') | chrome/chrome_tests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698