diff options
Diffstat (limited to 'gpu')
-rw-r--r-- | gpu/blink/BUILD.gn | 8 | ||||
-rw-r--r-- | gpu/command_buffer/client/BUILD.gn | 26 | ||||
-rw-r--r-- | gpu/config/BUILD.gn | 6 |
3 files changed, 15 insertions, 25 deletions
diff --git a/gpu/blink/BUILD.gn b/gpu/blink/BUILD.gn index 464061c..7d08ba11 100644 --- a/gpu/blink/BUILD.gn +++ b/gpu/blink/BUILD.gn @@ -14,6 +14,9 @@ component("blink") { "webgraphicscontext3d_in_process_command_buffer_impl.h", ] + # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. + configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] + defines = [ "GPU_BLINK_IMPLEMENTATION" ] deps = [ @@ -33,9 +36,4 @@ component("blink") { "//ui/gfx", "//ui/gfx/geometry", ] - - if (is_win) { - # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. - cflags = [ "/wd4267" ] - } } diff --git a/gpu/command_buffer/client/BUILD.gn b/gpu/command_buffer/client/BUILD.gn index 2d28d1a..a5532cb 100644 --- a/gpu/command_buffer/client/BUILD.gn +++ b/gpu/command_buffer/client/BUILD.gn @@ -19,10 +19,8 @@ source_set("client") { defines = [ "GPU_IMPLEMENTATION" ] - if (is_win) { - # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. - cflags = [ "/wd4267" ] # size_t to int truncation. - } + # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. + configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] @@ -56,10 +54,8 @@ source_set("gles2_cmd_helper_sources") { defines = [ "GPU_IMPLEMENTATION" ] - if (is_win) { - # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. - cflags = [ "/wd4267" ] # size_t to int truncation. - } + # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. + configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] deps = [ ":client", @@ -129,14 +125,12 @@ source_set("gpu_memory_buffer_manager") { component("gles2_implementation") { sources = gles2_implementation_source_files + # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. + configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] + defines = [ "GLES2_IMPL_IMPLEMENTATION" ] all_dependent_configs = [ "//third_party/khronos:khronos_headers" ] - if (is_win) { - # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. - cflags = [ "/wd4267" ] # size_t to int truncation. - } - deps = [ ":gles2_cmd_helper", ":gles2_interface", @@ -171,10 +165,8 @@ component("gles2_c_lib") { sources = gles2_c_lib_source_files defines = [ "GLES2_C_LIB_IMPLEMENTATION" ] - if (is_win) { - # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. - cflags = [ "/wd4267" ] # size_t to int truncation. - } + # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. + configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] deps = [ ":client", diff --git a/gpu/config/BUILD.gn b/gpu/config/BUILD.gn index 1d86e69..4d068ed 100644 --- a/gpu/config/BUILD.gn +++ b/gpu/config/BUILD.gn @@ -45,6 +45,9 @@ source_set("config") { "software_rendering_list_json.cc", ] + # TODO(jschuh): size_t to int. + configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] + defines = [ "GPU_IMPLEMENTATION" ] deps = [ @@ -69,9 +72,6 @@ source_set("config") { "//third_party/amd/amd_videocard_info_win.cc", ] } - - # TODO(jschuh): size_t to int. - cflags = [ "/wd4267" ] } if (use_libpci) { defines += [ "USE_LIBPCI=1" ] |