diff options
Diffstat (limited to 'gpu')
-rw-r--r-- | gpu/gpu.gyp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gpu/gpu.gyp b/gpu/gpu.gyp index e3ccb37..3657bae 100644 --- a/gpu/gpu.gyp +++ b/gpu/gpu.gyp @@ -27,6 +27,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. @@ -84,6 +86,8 @@ 'sources': [ '<@(gles2_c_lib_source_files)', ], + # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. + 'msvs_disabled_warnings': [4267, ], }, { # Same as gles2_c_lib except with no parameter checking. Required for @@ -288,6 +292,8 @@ 'sources': [ 'gpu_export.h', ], + # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. + 'msvs_disabled_warnings': [4267, ], }, { 'target_name': 'command_buffer_common', @@ -368,6 +374,8 @@ '../base/base.gyp:base', 'command_buffer/command_buffer.gyp:gles2_utils', ], + # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. + 'msvs_disabled_warnings': [4267, ], }, { 'target_name': 'command_buffer_common', |