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

Side by Side Diff: Source/core/core.gyp

Issue 383153007: Fixes for re-enabling more MSVC level 4 warnings: Source/core/ edition (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Review comments Created 6 years, 5 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « Source/core/accessibility/AXRenderObject.cpp ('k') | Source/core/editing/TextIterator.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # 1 #
2 # Copyright (C) 2009 Google Inc. All rights reserved. 2 # Copyright (C) 2009 Google Inc. All rights reserved.
3 # 3 #
4 # Redistribution and use in source and binary forms, with or without 4 # Redistribution and use in source and binary forms, with or without
5 # modification, are permitted provided that the following conditions are 5 # modification, are permitted provided that the following conditions are
6 # met: 6 # met:
7 # 7 #
8 # * Redistributions of source code must retain the above copyright 8 # * Redistributions of source code must retain the above copyright
9 # notice, this list of conditions and the following disclaimer. 9 # notice, this list of conditions and the following disclaimer.
10 # * Redistributions in binary form must reproduce the above 10 # * Redistributions in binary form must reproduce the above
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 ], 329 ],
330 'conditions': [ 330 'conditions': [
331 ['OS=="win" and component=="shared_library"', { 331 ['OS=="win" and component=="shared_library"', {
332 'defines': [ 332 'defines': [
333 'USING_V8_SHARED', 333 'USING_V8_SHARED',
334 ], 334 ],
335 }], 335 }],
336 ['OS=="win"', { 336 ['OS=="win"', {
337 # In generated bindings code: 'switch contains default but no case'. 337 # In generated bindings code: 'switch contains default but no case'.
338 # Disable c4267 warnings until we fix size_t to int truncations. 338 # Disable c4267 warnings until we fix size_t to int truncations.
339 # 4702 is disabled because of issues in Bison-generated 339 # 4701 and 4702 are disabled because of issues in Bison-generated
340 # XPathGrammar.cpp and CSSGrammar.cpp. 340 # XPathGrammar.cpp and CSSGrammar.cpp.
341 'msvs_disabled_warnings': [ 4065, 4267, 4702 ], 341 'msvs_disabled_warnings': [ 4065, 4267, 4701, 4702 ],
342 }], 342 }],
343 ['OS in ("linux", "android") and "WTF_USE_WEBAUDIO_IPP=1" in feature_def ines', { 343 ['OS in ("linux", "android") and "WTF_USE_WEBAUDIO_IPP=1" in feature_def ines', {
344 'cflags': [ 344 'cflags': [
345 '<!@(pkg-config --cflags-only-I ipp)', 345 '<!@(pkg-config --cflags-only-I ipp)',
346 ], 346 ],
347 }], 347 }],
348 ], 348 ],
349 }, 349 },
350 { 350 {
351 # We'll soon split libwebcore in multiple smaller libraries. 351 # We'll soon split libwebcore in multiple smaller libraries.
(...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after
827 '<(bindings_core_v8_output_dir)/V8LayerRectList.h', 827 '<(bindings_core_v8_output_dir)/V8LayerRectList.h',
828 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.cpp', 828 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.cpp',
829 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.h', 829 '<(bindings_core_v8_output_dir)/V8RefCountedScriptWrappable.h',
830 ], 830 ],
831 'sources/': [ 831 'sources/': [
832 ['exclude', 'testing/js'], 832 ['exclude', 'testing/js'],
833 ], 833 ],
834 }, 834 },
835 ], # targets 835 ], # targets
836 } 836 }
OLDNEW
« no previous file with comments | « Source/core/accessibility/AXRenderObject.cpp ('k') | Source/core/editing/TextIterator.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698