Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(329)

Unified Diff: src/inspector/inspector.gyp

Issue 2206943002: [inspector] fix GYP/MSVS build warnings. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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',
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698