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 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
158 'dependencies': [ | 158 'dependencies': [ |
159 '../build/linux/system.gyp:gtk', | 159 '../build/linux/system.gyp:gtk', |
160 '../sandbox/sandbox.gyp:sandbox', | 160 '../sandbox/sandbox.gyp:sandbox', |
161 ], | 161 ], |
162 }], | 162 }], |
163 # Windows-specific rules. | 163 # Windows-specific rules. |
164 ['OS=="win"', { | 164 ['OS=="win"', { |
165 'include_dirs': [ | 165 'include_dirs': [ |
166 'third_party/wtl/include', | 166 'third_party/wtl/include', |
167 ], | 167 ], |
168 'sources': [ | |
169 'renderer/command_buffer_proxy.cc', | |
170 'renderer/command_buffer_proxy.h', | |
171 ], | |
172 'conditions': [ | 168 'conditions': [ |
173 ['win_use_allocator_shim==1', { | 169 ['win_use_allocator_shim==1', { |
174 'dependencies': [ | 170 'dependencies': [ |
175 '<(allocator_target)', | 171 '<(allocator_target)', |
176 ], | 172 ], |
177 'export_dependent_settings': [ | 173 'export_dependent_settings': [ |
178 '<(allocator_target)', | 174 '<(allocator_target)', |
179 ], | 175 ], |
180 }], | 176 }], |
181 ], | 177 ], |
182 }], | 178 }], |
| 179 ['OS=="win" or (OS=="linux" and target_arch!="arm")', { |
| 180 'sources': [ |
| 181 'renderer/command_buffer_proxy.cc', |
| 182 'renderer/command_buffer_proxy.h', |
| 183 ], |
| 184 }], |
183 ], | 185 ], |
184 }, | 186 }, |
185 ], | 187 ], |
186 } | 188 } |
187 | 189 |
188 # Local Variables: | 190 # Local Variables: |
189 # tab-width:2 | 191 # tab-width:2 |
190 # indent-tabs-mode:nil | 192 # indent-tabs-mode:nil |
191 # End: | 193 # End: |
192 # vim: set expandtab tabstop=2 shiftwidth=2: | 194 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |