From 63b73349cb5dedbf1a2e6e90eb24b79df66d4416 Mon Sep 17 00:00:00 2001 From: Alexey Kozyatinskiy Date: Fri, 1 Dec 2017 15:36:37 -0800 Subject: [PATCH] [inspector] removed warning suppression from BUILD.gn All these warnings were fixed long time ago. TBR=dgozman@chromium.org Bug: none Cq-Include-Trybots: master.tryserver.blink:linux_trusty_blink_rel Change-Id: I066136ce685f95d07b7cbbb4efa8255f5aeaf1a8 Reviewed-on: https://chromium-review.googlesource.com/804816 Reviewed-by: Aleksey Kozyatinskiy Commit-Queue: Aleksey Kozyatinskiy Cr-Commit-Position: refs/heads/master@{#49808} --- src/inspector/BUILD.gn | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/inspector/BUILD.gn b/src/inspector/BUILD.gn index 2ebf561135..699b1bcbd4 100644 --- a/src/inspector/BUILD.gn +++ b/src/inspector/BUILD.gn @@ -79,17 +79,6 @@ action("inspector_injected_script") { config("inspector_config") { visibility = [ ":*" ] # Only targets in this file can depend on this. - cflags = [] - if (is_win) { - cflags += [ - "/wd4267", # Truncation from size_t to int. - "/wd4305", # Truncation from 'type1' to 'type2'. - "/wd4324", # Struct padded due to declspec(align). - "/wd4714", # Function marked forceinline not inlined. - "/wd4800", # Value forced to bool. - "/wd4996", # Deprecated function call. - ] - } if (is_component_build) { defines = [ "BUILDING_V8_SHARED" ] }