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

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 'msvs_disabled_warnings': [4351, 4355, 4800],
753 'msvs_disabled_warnings': [4355, 4800],
754 'link_settings': { 753 'link_settings': {
755 'libraries': [ '-lwinmm.lib' ], 754 'libraries': [ '-lwinmm.lib' ],
756 }, 755 },
757 }], 756 }],
758 ['OS=="win" and component=="shared_library"', { 757 ['OS=="win" and component=="shared_library"', {
759 'defines': [ 758 'defines': [
760 'BUILDING_V8_SHARED' 759 'BUILDING_V8_SHARED'
761 ], 760 ],
762 }], 761 }],
763 ], 762 ],
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
860 'target_name': 'v8_shell', 859 'target_name': 'v8_shell',
861 'type': 'none', 860 'type': 'none',
862 'dependencies': [ 861 'dependencies': [
863 'v8' 862 'v8'
864 ], 863 ],
865 }, 864 },
866 ], 865 ],
867 }], 866 }],
868 ], 867 ],
869 } 868 }
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