OLD | NEW |
---|---|
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 Loading... | |
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 Loading... | |
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 } |
OLD | NEW |