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

Side by Side Diff: tools/gyp/v8.gyp

Issue 10829109: Don't show performance warnings when compiling dependents when compiling with msvc (Closed)
Patch Set: Created 8 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2012 the V8 project authors. All rights reserved. 1 # Copyright 2012 the V8 project authors. All rights reserved.
2 # Redistribution and use in source and binary forms, with or without 2 # Redistribution and use in source and binary forms, with or without
3 # modification, are permitted provided that the following conditions are 3 # modification, are permitted provided that the following conditions are
4 # met: 4 # met:
5 # 5 #
6 # * Redistributions of source code must retain the above copyright 6 # * Redistributions of source code must retain the above copyright
7 # notice, this list of conditions and the following disclaimer. 7 # notice, this list of conditions and the following disclaimer.
8 # * Redistributions in binary form must reproduce the above 8 # * Redistributions in binary form must reproduce the above
9 # copyright notice, this list of conditions and the following 9 # copyright notice, this list of conditions and the following
10 # disclaimer in the documentation and/or other materials provided 10 # disclaimer in the documentation and/or other materials provided
(...skipping 710 matching lines...) Expand 10 before | Expand all | Expand 10 after
721 '../../src/platform-posix.cc' 721 '../../src/platform-posix.cc'
722 ]}, 722 ]},
723 ], 723 ],
724 ['OS=="win"', { 724 ['OS=="win"', {
725 'sources': [ 725 'sources': [
726 '../../src/platform-win32.cc', 726 '../../src/platform-win32.cc',
727 '../../src/win32-math.cc', 727 '../../src/win32-math.cc',
728 '../../src/win32-math.h', 728 '../../src/win32-math.h',
729 ], 729 ],
730 'msvs_disabled_warnings': [4351, 4355, 4800], 730 'msvs_disabled_warnings': [4351, 4355, 4800],
731 'direct_dependent_settings': {
732 'msvs_disabled_warnings': [4351, 4355, 4800],
733 },
731 'link_settings': { 734 'link_settings': {
732 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ], 735 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ],
733 }, 736 },
734 }], 737 }],
735 ['component=="shared_library"', { 738 ['component=="shared_library"', {
736 'defines': [ 739 'defines': [
737 'BUILDING_V8_SHARED', 740 'BUILDING_V8_SHARED',
738 'V8_SHARED', 741 'V8_SHARED',
739 ], 742 ],
740 }], 743 }],
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
995 }], 998 }],
996 ], 999 ],
997 'dependencies': [ 1000 'dependencies': [
998 'v8' 1001 'v8'
999 ], 1002 ],
1000 }, 1003 },
1001 ], 1004 ],
1002 }], 1005 }],
1003 ], 1006 ],
1004 } 1007 }
OLDNEW
« 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