OLD | NEW |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': 'content_renderer', | 8 'target_name': 'content_renderer', |
9 'msvs_guid': '9AAA8CF2-9B3D-4895-8CB9-D70BBD125EAD', | 9 'msvs_guid': '9AAA8CF2-9B3D-4895-8CB9-D70BBD125EAD', |
10 'type': '<(library)', | 10 'type': '<(library)', |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
168 }], | 168 }], |
169 ['enable_gpu==1', { | 169 ['enable_gpu==1', { |
170 'dependencies': [ | 170 'dependencies': [ |
171 '../gpu/gpu.gyp:gles2_c_lib', | 171 '../gpu/gpu.gyp:gles2_c_lib', |
172 ], | 172 ], |
173 'sources': [ | 173 'sources': [ |
174 'renderer/command_buffer_proxy.cc', | 174 'renderer/command_buffer_proxy.cc', |
175 'renderer/command_buffer_proxy.h', | 175 'renderer/command_buffer_proxy.h', |
176 ], | 176 ], |
177 }], | 177 }], |
178 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 178 ['toolkit_uses_gtk==1', { |
179 'dependencies': [ | 179 'dependencies': [ |
180 '../build/linux/system.gyp:gtk', | 180 '../build/linux/system.gyp:gtk', |
181 ], | 181 ], |
182 }], | 182 }], |
183 ['OS=="mac"', { | 183 ['OS=="mac"', { |
184 'sources!': [ | 184 'sources!': [ |
185 'common/process_watcher_posix.cc', | 185 'common/process_watcher_posix.cc', |
186 ], | 186 ], |
187 'link_settings': { | 187 'link_settings': { |
188 'mac_bundle_resources': [ | 188 'mac_bundle_resources': [ |
189 'renderer/renderer.sb', | 189 'renderer/renderer.sb', |
190 ], | 190 ], |
191 }, | 191 }, |
192 }], | 192 }], |
193 ], | 193 ], |
194 }, | 194 }, |
195 ], | 195 ], |
196 } | 196 } |
OLD | NEW |