Index: src/inspector/inspector.gyp |
diff --git a/src/inspector/inspector.gyp b/src/inspector/inspector.gyp |
index bf196cead3cda39b63d95e6ed2cb06a36682a2be..3b80c39507db8c4060ade76882f357325463b7e8 100644 |
--- a/src/inspector/inspector.gyp |
+++ b/src/inspector/inspector.gyp |
@@ -69,6 +69,14 @@ |
'defines': [ |
'V8_INSPECTOR_USE_STL', |
], |
+ 'msvs_disabled_warnings': [ |
+ 4267, # Truncation from size_t to int. |
+ 4305, # Truncation from 'type1' to 'type2'. |
+ 4324, # Struct padded due to declspec(align). |
+ 4714, # Function marked forceinline not inlined. |
+ 4800, # Value forced to bool. |
+ 4996, # Deprecated function call. |
+ ], |
'sources': [ |
'<@(protocol_sources)', |
'<(protocol_path)/Allocator.h', |