diff options
author | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-08 07:48:38 +0000 |
---|---|---|
committer | jschuh@chromium.org <jschuh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-02-08 07:48:38 +0000 |
commit | 8cbc82ef929e95f59fcaf47ce005c3fab3a3885b (patch) | |
tree | 8a69a4c4d4d65612a7cfaa6870f6e41a2d218acb /gpu | |
parent | f2156ea73553df65b64f0475e5ed51cec28d221b (diff) | |
download | chromium_src-8cbc82ef929e95f59fcaf47ce005c3fab3a3885b.zip chromium_src-8cbc82ef929e95f59fcaf47ce005c3fab3a3885b.tar.gz chromium_src-8cbc82ef929e95f59fcaf47ce005c3fab3a3885b.tar.bz2 |
Make gpu_unittests build on Win64
Just c4267 build suppressions.
BUG=166496
BUG=167187
TBR=piman@chromium.org
R=piman@chromium.org
Review URL: https://chromiumcodereview.appspot.com/12210078
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@181453 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'gpu')
-rw-r--r-- | gpu/gpu.gyp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gpu/gpu.gyp b/gpu/gpu.gyp index 8cc6756..0e4aaf9 100644 --- a/gpu/gpu.gyp +++ b/gpu/gpu.gyp @@ -48,6 +48,8 @@ 'sources': [ '<@(gles2_implementation_source_files)', ], + # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. + 'msvs_disabled_warnings': [ 4267, ], }, { # Library emulates GLES2 using command_buffers. @@ -210,6 +212,8 @@ ], }], ], + # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. + 'msvs_disabled_warnings': [ 4267, ], }, { 'target_name': 'gl_tests', |