OLD | NEW |
---|---|
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'target_defaults': { | 6 'target_defaults': { |
7 'variables': { | 7 'variables': { |
8 'chrome_exe_target': 0, | 8 'chrome_exe_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
189 ], | 189 ], |
190 'conditions': [ | 190 'conditions': [ |
191 ['linux_use_tcmalloc==1', { | 191 ['linux_use_tcmalloc==1', { |
192 'dependencies': [ | 192 'dependencies': [ |
193 '<(allocator_target)', | 193 '<(allocator_target)', |
194 ], | 194 ], |
195 }, | 195 }, |
196 ], | 196 ], |
197 # TODO(rkc): Remove this once we have a fix for remote gdb | 197 # TODO(rkc): Remove this once we have a fix for remote gdb |
198 # and are able to correctly get section header offsets for | 198 # and are able to correctly get section header offsets for |
199 # pie executables. Currently -pie breaks remote debugging. | 199 # pie executables. Currently -pie breaks remote debugging. |
raymes
2011/05/12 21:25:52
Lets remove this TODO then?
| |
200 ['disable_pie==1', { | 200 ['disable_pie==1', { |
201 'ldflags' : ['-nopie'], | 201 'ldflags' : ['-nopie'], |
202 }, { | |
203 'ldflags' : ['-pie'], | |
202 }], | 204 }], |
203 ['use_system_xdg_utils==0', { | 205 ['use_system_xdg_utils==0', { |
204 'copies': [ | 206 'copies': [ |
205 { | 207 { |
206 'destination': '<(PRODUCT_DIR)', | 208 'destination': '<(PRODUCT_DIR)', |
207 'files': ['tools/build/linux/chrome-wrapper', | 209 'files': ['tools/build/linux/chrome-wrapper', |
208 '../third_party/xdg-utils/scripts/xdg-mime', | 210 '../third_party/xdg-utils/scripts/xdg-mime', |
209 '../third_party/xdg-utils/scripts/xdg-settings', | 211 '../third_party/xdg-utils/scripts/xdg-settings', |
210 ], | 212 ], |
211 # The wrapper script above may need to generate a .desktop | 213 # The wrapper script above may need to generate a .desktop |
(...skipping 316 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
528 'configurations': { | 530 'configurations': { |
529 'Common_Base': { | 531 'Common_Base': { |
530 'msvs_target_platform': 'x64', | 532 'msvs_target_platform': 'x64', |
531 }, | 533 }, |
532 }, | 534 }, |
533 }, | 535 }, |
534 ], | 536 ], |
535 }], | 537 }], |
536 ], | 538 ], |
537 } | 539 } |
OLD | NEW |