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 'target_name': 'chrome', | 8 'target_name': 'chrome', |
9 'type': 'none', | 9 'type': 'none', |
10 'dependencies': [ 'chrome_initial', ], | 10 'dependencies': [ 'chrome_initial', ], |
(...skipping 123 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
134 'app/resources/manpage.1.in', | 134 'app/resources/manpage.1.in', |
135 '<@(_outputs)', | 135 '<@(_outputs)', |
136 '-e', 's/@@NAME@@/<(name)/', | 136 '-e', 's/@@NAME@@/<(name)/', |
137 '-e', 's/@@FILENAME@@/<(filename)/', | 137 '-e', 's/@@FILENAME@@/<(filename)/', |
138 '-e', 's/@@CONFDIR@@/<(confdir)/', | 138 '-e', 's/@@CONFDIR@@/<(confdir)/', |
139 ], | 139 ], |
140 'message': 'Generating manpage' | 140 'message': 'Generating manpage' |
141 }, | 141 }, |
142 ], | 142 ], |
143 'conditions': [ | 143 'conditions': [ |
144 # TODO(dmikurube): Kill linux_use_tcmalloc. http://crbug.com/345554 | 144 ['use_allocator!="none"', { |
145 ['(use_allocator!="none" and use_allocator!="see_use_tcmalloc") or (
use_allocator=="see_use_tcmalloc" and linux_use_tcmalloc==1)', { | |
146 'dependencies': [ | 145 'dependencies': [ |
147 '<(allocator_target)', | 146 '<(allocator_target)', |
148 ], | 147 ], |
149 }, | 148 }, |
150 ], | 149 ], |
151 ['profiling==0 and linux_disable_pie==0', { | 150 ['profiling==0 and linux_disable_pie==0', { |
152 'ldflags': [ | 151 'ldflags': [ |
153 '-pie', | 152 '-pie', |
154 ], | 153 ], |
155 }], | 154 }], |
(...skipping 530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
686 'dependencies': [ | 685 'dependencies': [ |
687 'chrome_nacl_win64', | 686 'chrome_nacl_win64', |
688 ], | 687 ], |
689 }], | 688 }], |
690 ], | 689 ], |
691 }, | 690 }, |
692 ], | 691 ], |
693 }], | 692 }], |
694 ], | 693 ], |
695 } | 694 } |
OLD | NEW |