| 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 }], | 170 }], |
| 171 ['enable_gpu==1', { | 171 ['enable_gpu==1', { |
| 172 'dependencies': [ | 172 'dependencies': [ |
| 173 '../gpu/gpu.gyp:gles2_c_lib', | 173 '../gpu/gpu.gyp:gles2_c_lib', |
| 174 ], | 174 ], |
| 175 'sources': [ | 175 'sources': [ |
| 176 'renderer/command_buffer_proxy.cc', | 176 'renderer/command_buffer_proxy.cc', |
| 177 'renderer/command_buffer_proxy.h', | 177 'renderer/command_buffer_proxy.h', |
| 178 ], | 178 ], |
| 179 }], | 179 }], |
| 180 ['OS=="linux" or OS=="freebsd" or OS=="openbsd"', { | 180 ['toolkit_uses_gtk==1', { |
| 181 'dependencies': [ | 181 'dependencies': [ |
| 182 '../build/linux/system.gyp:gtk', | 182 '../build/linux/system.gyp:gtk', |
| 183 ], | 183 ], |
| 184 }], | 184 }], |
| 185 ['OS=="mac"', { | 185 ['OS=="mac"', { |
| 186 'sources!': [ | 186 'sources!': [ |
| 187 'common/process_watcher_posix.cc', | 187 'common/process_watcher_posix.cc', |
| 188 ], | 188 ], |
| 189 'link_settings': { | 189 'link_settings': { |
| 190 'mac_bundle_resources': [ | 190 'mac_bundle_resources': [ |
| 191 'renderer/renderer.sb', | 191 'renderer/renderer.sb', |
| 192 ], | 192 ], |
| 193 }, | 193 }, |
| 194 }], | 194 }], |
| 195 ], | 195 ], |
| 196 }, | 196 }, |
| 197 ], | 197 ], |
| 198 } | 198 } |
| OLD | NEW |