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

Side by Side Diff: webkit/webkit.gyp

Issue 258024: Ported Chrome's WebGL implementation to Linux. Required changes to... (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 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
275 # Conditionally compile in GLEW and our GraphicsContext3D implementati on. 275 # Conditionally compile in GLEW and our GraphicsContext3D implementati on.
276 'sources+': [ 276 'sources+': [
277 'api/src/GraphicsContext3D.cpp', 277 'api/src/GraphicsContext3D.cpp',
278 '../third_party/glew/src/glew.c' 278 '../third_party/glew/src/glew.c'
279 ], 279 ],
280 'include_dirs+': [ 280 'include_dirs+': [
281 '../third_party/glew/include' 281 '../third_party/glew/include'
282 ], 282 ],
283 'defines+': [ 283 'defines+': [
284 'GLEW_STATIC=1', 284 'GLEW_STATIC=1',
285 'GLEW_NO_GLU=1',
285 ], 286 ],
286 'conditions': [ 287 'conditions': [
287 ['OS=="win"', { 288 ['OS=="win"', {
288 'link_settings': { 289 'link_settings': {
289 'libraries': [ 290 'libraries': [
290 '-lopengl32.lib', 291 '-lopengl32.lib',
291 ], 292 ],
292 }, 293 },
293 }], 294 }],
294 ['OS=="mac"', { 295 ['OS=="mac"', {
(...skipping 462 matching lines...) Expand 10 before | Expand all | Expand 10 after
757 ], 758 ],
758 'outputs': [ 759 'outputs': [
759 '<(PRODUCT_DIR)/resources/inspector/devtools.html', 760 '<(PRODUCT_DIR)/resources/inspector/devtools.html',
760 ], 761 ],
761 'action': ['python', '<@(_inputs)', '<@(_outputs)', '<@(devtools_files )'], 762 'action': ['python', '<@(_inputs)', '<@(_outputs)', '<@(devtools_files )'],
762 }, 763 },
763 ], 764 ],
764 } 765 }
765 ], # targets 766 ], # targets
766 } 767 }
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