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

Unified Diff: gpu/demos/demos.gyp

Issue 565041: Implemented window class on linux. Standalone demos are working on linux now. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | gpu/demos/framework/main_exe.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: gpu/demos/demos.gyp
===================================================================
--- gpu/demos/demos.gyp (revision 37981)
+++ gpu/demos/demos.gyp (working copy)
@@ -43,17 +43,22 @@
'../gpu.gyp:command_buffer_service',
],
'sources': [
+ 'framework/main_exe.cc',
'framework/window.cc',
'framework/window.h',
],
'conditions': [
- ['OS=="linux"', {'sources': ['framework/window_linux.cc']}],
- ['OS=="mac"', {'sources': ['framework/window_mac.mm']}],
- ['OS=="win"', {'sources': ['framework/window_win.cc']}],
+ ['OS=="linux"', {
+ 'sources': ['framework/window_linux.cc'],
+ 'dependencies': ['../../build/linux/system.gyp:gtk'],
+ }],
+ ['OS=="mac"', {
+ 'sources': ['framework/window_mac.mm'],
+ }],
+ ['OS=="win"', {
+ 'sources': ['framework/window_win.cc'],
+ }],
],
- 'direct_dependent_settings': {
- 'sources': ['framework/main_exe.cc'],
- },
},
{
'target_name': 'gpu_demo_framework_pepper',
« no previous file with comments | « no previous file | gpu/demos/framework/main_exe.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698