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 732 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
743 } | 743 } |
744 ], | 744 ], |
745 ['OS=="mac"', { | 745 ['OS=="mac"', { |
746 'sources': [ | 746 'sources': [ |
747 '../../src/platform-macos.cc', | 747 '../../src/platform-macos.cc', |
748 '../../src/platform-posix.cc' | 748 '../../src/platform-posix.cc' |
749 ]}, | 749 ]}, |
750 ], | 750 ], |
751 ['OS=="win"', { | 751 ['OS=="win"', { |
752 'variables': { | 752 'variables': { |
753 'build_env': '<!(uname -o)', | |
Jakob Kummerow
2013/04/16 08:27:24
This causes an error when running "python build\gy
| |
753 'gyp_generators': '<!(echo $GYP_GENERATORS)', | 754 'gyp_generators': '<!(echo $GYP_GENERATORS)', |
754 }, | 755 }, |
755 'sources': [ | |
756 '../../src/platform-win32.cc', | |
757 '../../src/win32-math.cc', | |
758 '../../src/win32-math.h', | |
759 ], | |
760 'conditions': [ | 756 'conditions': [ |
757 ['build_env=="Cygwin"', { | |
758 'sources': [ | |
759 '../../src/platform-cygwin.cc', | |
760 '../../src/platform-posix.cc', | |
761 ], | |
762 }, { | |
763 'sources': [ | |
764 '../../src/platform-win32.cc', | |
765 '../../src/win32-math.h', | |
766 '../../src/win32-math.cc', | |
767 ], | |
768 }], | |
761 ['gyp_generators=="make"', { | 769 ['gyp_generators=="make"', { |
762 'link_settings': { | 770 'link_settings': { |
763 'libraries': [ '-lwinmm', '-lws2_32' ], | 771 'libraries': [ '-lwinmm', '-lws2_32' ], |
764 }, | 772 }, |
765 }, { | 773 }, { |
766 'msvs_disabled_warnings': [4351, 4355, 4800], | 774 'msvs_disabled_warnings': [4351, 4355, 4800], |
767 'link_settings': { | 775 'link_settings': { |
768 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ], | 776 'libraries': [ '-lwinmm.lib', '-lws2_32.lib' ], |
769 }, | 777 }, |
770 }], | 778 }], |
(...skipping 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1011 }], | 1019 }], |
1012 ], | 1020 ], |
1013 'dependencies': [ | 1021 'dependencies': [ |
1014 'v8' | 1022 'v8' |
1015 ], | 1023 ], |
1016 }, | 1024 }, |
1017 ], | 1025 ], |
1018 }], | 1026 }], |
1019 ], | 1027 ], |
1020 } | 1028 } |
OLD | NEW |