OLD | NEW |
1 # Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2009 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': 'renderer', | 8 'target_name': 'renderer', |
9 'type': '<(library)', | 9 'type': '<(library)', |
10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', | 10 'msvs_guid': '9301A569-5D2B-4D11-9332-B1E30AEACB8D', |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
178 ['win_use_allocator_shim==1', { | 178 ['win_use_allocator_shim==1', { |
179 'dependencies': [ | 179 'dependencies': [ |
180 '<(allocator_target)', | 180 '<(allocator_target)', |
181 ], | 181 ], |
182 'export_dependent_settings': [ | 182 'export_dependent_settings': [ |
183 '<(allocator_target)', | 183 '<(allocator_target)', |
184 ], | 184 ], |
185 }], | 185 }], |
186 ], | 186 ], |
187 }], | 187 }], |
188 ['OS=="win" or (OS=="linux" and target_arch!="arm")', { | 188 ['enable_gpu==1', { |
189 'sources': [ | 189 'sources': [ |
190 'renderer/command_buffer_proxy.cc', | 190 'renderer/command_buffer_proxy.cc', |
191 'renderer/command_buffer_proxy.h', | 191 'renderer/command_buffer_proxy.h', |
192 ], | 192 ], |
193 }], | 193 }], |
194 ], | 194 ], |
195 }, | 195 }, |
196 ], | 196 ], |
197 } | 197 } |
198 | 198 |
199 # Local Variables: | 199 # Local Variables: |
200 # tab-width:2 | 200 # tab-width:2 |
201 # indent-tabs-mode:nil | 201 # indent-tabs-mode:nil |
202 # End: | 202 # End: |
203 # vim: set expandtab tabstop=2 shiftwidth=2: | 203 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |