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