| 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 669 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 680 ] | 680 ] |
| 681 }], | 681 }], |
| 682 ], | 682 ], |
| 683 }, | 683 }, |
| 684 ], | 684 ], |
| 685 ['OS=="freebsd"', { | 685 ['OS=="freebsd"', { |
| 686 'link_settings': { | 686 'link_settings': { |
| 687 'libraries': [ | 687 'libraries': [ |
| 688 '-L/usr/local/lib -lexecinfo', | 688 '-L/usr/local/lib -lexecinfo', |
| 689 ]}, | 689 ]}, |
| 690 }], |
| 691 ['OS=="dragonflybsd"', { |
| 692 'link_settings': { |
| 693 'libraries': [ |
| 694 '-pthread', |
| 695 ]}, |
| 696 }], |
| 697 ['OS=="freebsd" or OS=="dragonflybsd"', { |
| 690 'sources': [ | 698 'sources': [ |
| 691 '../../src/platform-freebsd.cc', | 699 '../../src/platform-freebsd.cc', |
| 692 '../../src/platform-posix.cc' | 700 '../../src/platform-posix.cc' |
| 693 ], | 701 ], |
| 694 } | 702 } |
| 695 ], | 703 ], |
| 696 ['OS=="openbsd"', { | 704 ['OS=="openbsd"', { |
| 697 'link_settings': { | 705 'link_settings': { |
| 698 'libraries': [ | 706 'libraries': [ |
| 699 '-L/usr/local/lib -lexecinfo', | 707 '-L/usr/local/lib -lexecinfo', |
| (...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1007 }], | 1015 }], |
| 1008 ], | 1016 ], |
| 1009 'dependencies': [ | 1017 'dependencies': [ |
| 1010 'v8' | 1018 'v8' |
| 1011 ], | 1019 ], |
| 1012 }, | 1020 }, |
| 1013 ], | 1021 ], |
| 1014 }], | 1022 }], |
| 1015 ], | 1023 ], |
| 1016 } | 1024 } |
| OLD | NEW |