| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 995 }], | 998 }], |
| 996 ], | 999 ], |
| 997 'dependencies': [ | 1000 'dependencies': [ |
| 998 'v8' | 1001 'v8' |
| 999 ], | 1002 ], |
| 1000 }, | 1003 }, |
| 1001 ], | 1004 ], |
| 1002 }], | 1005 }], |
| 1003 ], | 1006 ], |
| 1004 } | 1007 } |
| OLD | NEW |