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 ], |
168 'conditions': [ | 172 'conditions': [ |
169 ['win_use_allocator_shim==1', { | 173 ['win_use_allocator_shim==1', { |
170 'dependencies': [ | 174 'dependencies': [ |
171 '<(allocator_target)', | 175 '<(allocator_target)', |
172 ], | 176 ], |
173 'export_dependent_settings': [ | 177 'export_dependent_settings': [ |
174 '<(allocator_target)', | 178 '<(allocator_target)', |
175 ], | 179 ], |
176 }], | 180 }], |
177 ], | 181 ], |
178 }], | 182 }], |
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 }], | |
185 ], | 183 ], |
186 }, | 184 }, |
187 ], | 185 ], |
188 } | 186 } |
189 | 187 |
190 # Local Variables: | 188 # Local Variables: |
191 # tab-width:2 | 189 # tab-width:2 |
192 # indent-tabs-mode:nil | 190 # indent-tabs-mode:nil |
193 # End: | 191 # End: |
194 # vim: set expandtab tabstop=2 shiftwidth=2: | 192 # vim: set expandtab tabstop=2 shiftwidth=2: |
OLD | NEW |