| 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 748 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 759 ], | 759 ], |
| 760 }], | 760 }], |
| 761 ], | 761 ], |
| 762 'sources': [ | 762 'sources': [ |
| 763 '../../src/platform-linux.cc' | 763 '../../src/platform-linux.cc' |
| 764 ] | 764 ] |
| 765 }], | 765 }], |
| 766 ], | 766 ], |
| 767 }, | 767 }, |
| 768 ], | 768 ], |
| 769 ['OS=="qnx"', { |
| 770 'sources': [ |
| 771 '../../src/platform-posix.cc', |
| 772 ], |
| 773 'target_conditions': [ |
| 774 ['_toolset=="host" and host_os=="linux"', { |
| 775 'sources': [ |
| 776 '../../src/platform-linux.cc' |
| 777 ], |
| 778 'libraries': [ |
| 779 '-lrt' |
| 780 ], |
| 781 }], |
| 782 ['_toolset=="host" and host_os=="mac"', { |
| 783 'sources': [ |
| 784 '../../src/platform-macos.cc' |
| 785 ], |
| 786 }], |
| 787 ['_toolset=="target"', { |
| 788 'sources': [ |
| 789 '../../src/platform-qnx.cc' |
| 790 ], |
| 791 'libraries': [ |
| 792 '-lbacktrace', '-lsocket' |
| 793 ], |
| 794 }], |
| 795 ], |
| 796 }, |
| 797 ], |
| 769 ['OS=="freebsd"', { | 798 ['OS=="freebsd"', { |
| 770 'link_settings': { | 799 'link_settings': { |
| 771 'libraries': [ | 800 'libraries': [ |
| 772 '-L/usr/local/lib -lexecinfo', | 801 '-L/usr/local/lib -lexecinfo', |
| 773 ]}, | 802 ]}, |
| 774 'sources': [ | 803 'sources': [ |
| 775 '../../src/platform-freebsd.cc', | 804 '../../src/platform-freebsd.cc', |
| 776 '../../src/platform-posix.cc' | 805 '../../src/platform-posix.cc' |
| 777 ], | 806 ], |
| 778 } | 807 } |
| (...skipping 282 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1061 }], | 1090 }], |
| 1062 ['v8_compress_startup_data=="bz2"', { | 1091 ['v8_compress_startup_data=="bz2"', { |
| 1063 'libraries': [ | 1092 'libraries': [ |
| 1064 '-lbz2', | 1093 '-lbz2', |
| 1065 ] | 1094 ] |
| 1066 }], | 1095 }], |
| 1067 ], | 1096 ], |
| 1068 }, | 1097 }, |
| 1069 ], | 1098 ], |
| 1070 } | 1099 } |
| OLD | NEW |