summaryrefslogtreecommitdiffstats
path: root/gpu/gpu.gyp
diff options
context:
space:
mode:
authorapatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-19 22:15:21 +0000
committerapatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-01-19 22:15:21 +0000
commit6907f19accbde6269c3737b0ac17ff7d5686858a (patch)
treee679a054b5349448f20cf43a441ffacabf500e1f /gpu/gpu.gyp
parentfcdc18a51a39aa9f9a8961306eb583d17ee26289 (diff)
downloadchromium_src-6907f19accbde6269c3737b0ac17ff7d5686858a.zip
chromium_src-6907f19accbde6269c3737b0ac17ff7d5686858a.tar.gz
chromium_src-6907f19accbde6269c3737b0ac17ff7d5686858a.tar.bz2
Fixed gles2 demo by switching it from a console application to a windowed one. The HINSTANCE it was getting from the console was invalid for some reason.
TEST=none BUG=none Review URL: http://codereview.chromium.org/542119 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@36558 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu/gpu.gyp')
-rw-r--r--gpu/gpu.gyp8
1 files changed, 8 insertions, 0 deletions
diff --git a/gpu/gpu.gyp b/gpu/gpu.gyp
index 3185f5b..38e8059 100644
--- a/gpu/gpu.gyp
+++ b/gpu/gpu.gyp
@@ -400,6 +400,14 @@
'sources': [
'command_buffer/client/gles2_demo.cc',
],
+ 'msvs_settings': {
+ 'VCLinkerTool': {
+ # 0 == not set
+ # 1 == /SUBSYSTEM:CONSOLE
+ # 2 == /SUBSYSTEM:WINDOWS
+ 'SubSystem': '2',
+ },
+ },
},
],
},