| 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 787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 798 ], | 798 ], |
| 799 } | 799 } |
| 800 ], | 800 ], |
| 801 ['OS=="mac"', { | 801 ['OS=="mac"', { |
| 802 'sources': [ | 802 'sources': [ |
| 803 '../../src/platform-macos.cc', | 803 '../../src/platform-macos.cc', |
| 804 '../../src/platform-posix.cc' | 804 '../../src/platform-posix.cc' |
| 805 ]}, | 805 ]}, |
| 806 ], | 806 ], |
| 807 ['OS=="win"', { | 807 ['OS=="win"', { |
| 808 'defines': [ |
| 809 '_CRT_RAND_S' # for rand_s() |
| 810 ], |
| 808 'variables': { | 811 'variables': { |
| 809 'gyp_generators': '<!(echo $GYP_GENERATORS)', | 812 'gyp_generators': '<!(echo $GYP_GENERATORS)', |
| 810 }, | 813 }, |
| 811 'conditions': [ | 814 'conditions': [ |
| 812 ['gyp_generators=="make"', { | 815 ['gyp_generators=="make"', { |
| 813 'variables': { | 816 'variables': { |
| 814 'build_env': '<!(uname -o)', | 817 'build_env': '<!(uname -o)', |
| 815 }, | 818 }, |
| 816 'conditions': [ | 819 'conditions': [ |
| 817 ['build_env=="Cygwin"', { | 820 ['build_env=="Cygwin"', { |
| (...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1041 }], | 1044 }], |
| 1042 ['v8_compress_startup_data=="bz2"', { | 1045 ['v8_compress_startup_data=="bz2"', { |
| 1043 'libraries': [ | 1046 'libraries': [ |
| 1044 '-lbz2', | 1047 '-lbz2', |
| 1045 ] | 1048 ] |
| 1046 }], | 1049 }], |
| 1047 ], | 1050 ], |
| 1048 }, | 1051 }, |
| 1049 ], | 1052 ], |
| 1050 } | 1053 } |
| OLD | NEW |