| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |