| 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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 195 'message': 'Generating manpage' | 195 'message': 'Generating manpage' |
| 196 }, | 196 }, |
| 197 ], | 197 ], |
| 198 'conditions': [ | 198 'conditions': [ |
| 199 [ 'linux_use_tcmalloc==1', { | 199 [ 'linux_use_tcmalloc==1', { |
| 200 'dependencies': [ | 200 'dependencies': [ |
| 201 '<(allocator_target)', | 201 '<(allocator_target)', |
| 202 ], | 202 ], |
| 203 }, | 203 }, |
| 204 ], | 204 ], |
| 205 # TODO(rkc): Remove this once we have a fix for remote gdb |
| 206 # and are able to correctly get section header offsets for |
| 207 # pie executables. Currently -pie breaks remote debugging. |
| 208 [ '(disable_pie==1 and chromeos==1)', { |
| 209 'ldflags' : ['-nopie'], |
| 210 } |
| 211 ], |
| 205 ['use_system_xdg_utils==0', { | 212 ['use_system_xdg_utils==0', { |
| 206 'copies': [ | 213 'copies': [ |
| 207 { | 214 { |
| 208 'destination': '<(PRODUCT_DIR)', | 215 'destination': '<(PRODUCT_DIR)', |
| 209 'files': ['tools/build/linux/chrome-wrapper', | 216 'files': ['tools/build/linux/chrome-wrapper', |
| 210 '../third_party/xdg-utils/scripts/xdg-mime', | 217 '../third_party/xdg-utils/scripts/xdg-mime', |
| 211 '../third_party/xdg-utils/scripts/xdg-settings', | 218 '../third_party/xdg-utils/scripts/xdg-settings', |
| 212 ], | 219 ], |
| 213 # The wrapper script above may need to generate a .desktop | 220 # The wrapper script above may need to generate a .desktop |
| 214 # file, which requires an icon. So, copy one next to the | 221 # file, which requires an icon. So, copy one next to the |
| (...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 530 'configurations': { | 537 'configurations': { |
| 531 'Common_Base': { | 538 'Common_Base': { |
| 532 'msvs_target_platform': 'x64', | 539 'msvs_target_platform': 'x64', |
| 533 }, | 540 }, |
| 534 }, | 541 }, |
| 535 }, | 542 }, |
| 536 ], | 543 ], |
| 537 }], | 544 }], |
| 538 ], | 545 ], |
| 539 } | 546 } |
| OLD | NEW |