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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 1647453002: allocator cleanup: remove dependencies on allocator from all targets (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: pure rebase Created 4 years, 10 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 | « chrome/chrome_dll.gypi ('k') | chrome/chrome_installer.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 # GN version: //chrome 8 # GN version: //chrome
9 'target_name': 'chrome', 9 'target_name': 'chrome',
10 'type': 'none', 10 'type': 'none',
(...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after
153 'app/resources/manpage.1.in', 153 'app/resources/manpage.1.in',
154 '<@(_outputs)', 154 '<@(_outputs)',
155 '-e', 's/@@NAME@@/<(name)/', 155 '-e', 's/@@NAME@@/<(name)/',
156 '-e', 's/@@FILENAME@@/<(filename)/', 156 '-e', 's/@@FILENAME@@/<(filename)/',
157 '-e', 's/@@CONFDIR@@/<(confdir)/', 157 '-e', 's/@@CONFDIR@@/<(confdir)/',
158 ], 158 ],
159 'message': 'Generating manpage' 159 'message': 'Generating manpage'
160 }, 160 },
161 ], 161 ],
162 'conditions': [ 162 'conditions': [
163 ['use_allocator!="none"', {
164 'dependencies': [
165 '<(allocator_target)',
166 ],
167 },
168 ],
169 ['profiling==0 and linux_disable_pie==0', { 163 ['profiling==0 and linux_disable_pie==0', {
170 'ldflags': [ 164 'ldflags': [
171 '-pie', 165 '-pie',
172 ], 166 ],
173 }], 167 }],
174 ['use_system_xdg_utils==0', { 168 ['use_system_xdg_utils==0', {
175 'copies': [ 169 'copies': [
176 { 170 {
177 'destination': '<(PRODUCT_DIR)', 171 'destination': '<(PRODUCT_DIR)',
178 'files': ['tools/build/linux/chrome-wrapper', 172 'files': ['tools/build/linux/chrome-wrapper',
(...skipping 440 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 'dependencies': [ 613 'dependencies': [
620 'chrome_nacl_win64', 614 'chrome_nacl_win64',
621 ], 615 ],
622 }], 616 }],
623 ], 617 ],
624 }, 618 },
625 ], 619 ],
626 }], 620 }],
627 ], 621 ],
628 } 622 }
OLDNEW
« no previous file with comments | « chrome/chrome_dll.gypi ('k') | chrome/chrome_installer.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698