| 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 'includes': [ | 6 'includes': [ |
| 7 '../third_party/WebKit/WebKit/chromium/features.gypi', | 7 '../third_party/WebKit/WebKit/chromium/features.gypi', |
| 8 '../third_party/WebKit/WebCore/WebCore.gypi', | 8 '../third_party/WebKit/WebCore/WebCore.gypi', |
| 9 ], | 9 ], |
| 10 'variables': { | 10 'variables': { |
| (...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 '../third_party/glew/include' | 250 '../third_party/glew/include' |
| 251 ], | 251 ], |
| 252 'defines+': [ | 252 'defines+': [ |
| 253 'GLEW_STATIC=1', | 253 'GLEW_STATIC=1', |
| 254 ], | 254 ], |
| 255 'conditions': [ | 255 'conditions': [ |
| 256 ['OS=="win"', { | 256 ['OS=="win"', { |
| 257 'link_settings': { | 257 'link_settings': { |
| 258 'libraries': [ | 258 'libraries': [ |
| 259 '-lopengl32.lib', | 259 '-lopengl32.lib', |
| 260 ] | 260 ], |
| 261 }, |
| 262 }], |
| 263 ['OS=="mac"', { |
| 264 'link_settings': { |
| 265 'libraries': [ |
| 266 '$(SDKROOT)/System/Library/Frameworks/OpenGL.framework', |
| 267 ], |
| 261 }, | 268 }, |
| 262 }], | 269 }], |
| 263 ], | 270 ], |
| 264 }], | 271 }], |
| 265 ], | 272 ], |
| 266 }, | 273 }, |
| 267 { | 274 { |
| 268 'target_name': 'webkit_resources', | 275 'target_name': 'webkit_resources', |
| 269 'type': 'none', | 276 'type': 'none', |
| 270 'msvs_guid': '0B469837-3D46-484A-AFB3-C5A6C68730B9', | 277 'msvs_guid': '0B469837-3D46-484A-AFB3-C5A6C68730B9', |
| (...skipping 443 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 714 'files': [ | 721 'files': [ |
| 715 | 722 |
| 716 '<@(webinspector_image_files)', | 723 '<@(webinspector_image_files)', |
| 717 | 724 |
| 718 ], | 725 ], |
| 719 }, | 726 }, |
| 720 ], | 727 ], |
| 721 }, | 728 }, |
| 722 ], # targets | 729 ], # targets |
| 723 } | 730 } |
| OLD | NEW |