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

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

Issue 203743002: Fix "unreachable code" warnings (MSVC warning 4702) in Blink. (Closed) Base URL: svn://svn.chromium.org/blink/trunk/
Patch Set: Created 6 years, 9 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/build/scripts/make_css_value_keywords.py ('k') | Source/core/css/RuleFeature.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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 ], 331 ],
332 'conditions': [ 332 'conditions': [
333 ['OS=="win" and component=="shared_library"', { 333 ['OS=="win" and component=="shared_library"', {
334 'defines': [ 334 'defines': [
335 'USING_V8_SHARED', 335 'USING_V8_SHARED',
336 ], 336 ],
337 }], 337 }],
338 ['OS=="win"', { 338 ['OS=="win"', {
339 # In generated bindings code: 'switch contains default but no case'. 339 # In generated bindings code: 'switch contains default but no case'.
340 # Disable c4267 warnings until we fix size_t to int truncations. 340 # Disable c4267 warnings until we fix size_t to int truncations.
341 'msvs_disabled_warnings': [ 4065, 4267 ], 341 # 4702 is disabled because of issues in Bison-generated
342 # XPathGrammar.cpp and CSSGrammar.cpp.
343 'msvs_disabled_warnings': [ 4065, 4267, 4702 ],
342 }], 344 }],
343 ['OS in ("linux", "android") and "WTF_USE_WEBAUDIO_IPP=1" in feature_def ines', { 345 ['OS in ("linux", "android") and "WTF_USE_WEBAUDIO_IPP=1" in feature_def ines', {
344 'cflags': [ 346 'cflags': [
345 '<!@(pkg-config --cflags-only-I ipp)', 347 '<!@(pkg-config --cflags-only-I ipp)',
346 ], 348 ],
347 }], 349 }],
348 ], 350 ],
349 }, 351 },
350 { 352 {
351 # We'll soon split libwebcore in multiple smaller libraries. 353 # We'll soon split libwebcore in multiple smaller libraries.
(...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after
832 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRect.h', 834 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRect.h',
833 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.cpp', 835 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.cpp',
834 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.h', 836 '<(SHARED_INTERMEDIATE_DIR)/blink/bindings/V8LayerRectList.h',
835 ], 837 ],
836 'sources/': [ 838 'sources/': [
837 ['exclude', 'testing/js'], 839 ['exclude', 'testing/js'],
838 ], 840 ],
839 }, 841 },
840 ], # targets 842 ], # targets
841 } 843 }
OLDNEW
« no previous file with comments | « Source/build/scripts/make_css_value_keywords.py ('k') | Source/core/css/RuleFeature.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698