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

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

Issue 6272017: Disable MSVC warning that default array initializers now work properly. (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 9 years, 11 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 | « SConstruct ('k') | 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 2011 the V8 project authors. All rights reserved. 1 # Copyright 2011 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 731 matching lines...) Expand 10 before | Expand all | Expand 10 after
742 ['OS=="mac"', { 742 ['OS=="mac"', {
743 'sources': [ 743 'sources': [
744 '../../src/platform-macos.cc', 744 '../../src/platform-macos.cc',
745 '../../src/platform-posix.cc' 745 '../../src/platform-posix.cc'
746 ]}, 746 ]},
747 ], 747 ],
748 ['OS=="win"', { 748 ['OS=="win"', {
749 'sources': [ 749 'sources': [
750 '../../src/platform-win32.cc', 750 '../../src/platform-win32.cc',
751 ], 751 ],
752 # 4355, 4800 came from common.vsprops 752 # 4355, 4800 came from common.vsprops
Søren Thygesen Gjesse 2011/01/25 11:15:39 Please remove this comment - it does not make much
753 'msvs_disabled_warnings': [4355, 4800], 753 'msvs_disabled_warnings': [4351, 4355, 4800],
754 'link_settings': { 754 'link_settings': {
755 'libraries': [ '-lwinmm.lib' ], 755 'libraries': [ '-lwinmm.lib' ],
756 }, 756 },
757 }], 757 }],
758 ['OS=="win" and component=="shared_library"', { 758 ['OS=="win" and component=="shared_library"', {
759 'defines': [ 759 'defines': [
760 'BUILDING_V8_SHARED' 760 'BUILDING_V8_SHARED'
761 ], 761 ],
762 }], 762 }],
763 ], 763 ],
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
860 'target_name': 'v8_shell', 860 'target_name': 'v8_shell',
861 'type': 'none', 861 'type': 'none',
862 'dependencies': [ 862 'dependencies': [
863 'v8' 863 'v8'
864 ], 864 ],
865 }, 865 },
866 ], 866 ],
867 }], 867 }],
868 ], 868 ],
869 } 869 }
OLDNEW
« no previous file with comments | « SConstruct ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698