Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(669)

Side by Side Diff: webkit/webkit.gyp

Issue 256037: Ported Chrome's WebGL implementation to Mac OS X. Removed code which... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « webkit/api/src/GraphicsContext3D.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « webkit/api/src/GraphicsContext3D.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698