OLD | NEW |
1 # Copyright 2009 the V8 project authors. All rights reserved. | 1 # Copyright 2009 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 488 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
499 'libraries': [ | 499 'libraries': [ |
500 # Needed for clock_gettime() used by src/platform-linux.cc. | 500 # Needed for clock_gettime() used by src/platform-linux.cc. |
501 '-lrt', | 501 '-lrt', |
502 ]}, | 502 ]}, |
503 'sources': [ | 503 'sources': [ |
504 '../../src/platform-linux.cc', | 504 '../../src/platform-linux.cc', |
505 '../../src/platform-posix.cc' | 505 '../../src/platform-posix.cc' |
506 ], | 506 ], |
507 } | 507 } |
508 ], | 508 ], |
| 509 ['OS=="openbsd"', { |
| 510 'link_settings': { |
| 511 'libraries': [ |
| 512 '-L/usr/local/lib -lexecinfo', |
| 513 ]}, |
| 514 'sources': [ |
| 515 '../../src/platform-openbsd.cc', |
| 516 '../../src/platform-posix.cc' |
| 517 ], |
| 518 } |
| 519 ], |
509 ['OS=="mac"', { | 520 ['OS=="mac"', { |
510 'sources': [ | 521 'sources': [ |
511 '../../src/platform-macos.cc', | 522 '../../src/platform-macos.cc', |
512 '../../src/platform-posix.cc' | 523 '../../src/platform-posix.cc' |
513 ]}, | 524 ]}, |
514 ], | 525 ], |
515 ['OS=="win"', { | 526 ['OS=="win"', { |
516 'sources': [ | 527 'sources': [ |
517 '../../src/platform-win32.cc', | 528 '../../src/platform-win32.cc', |
518 ], | 529 ], |
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
606 ], | 617 ], |
607 'conditions': [ | 618 'conditions': [ |
608 [ 'OS=="win"', { | 619 [ 'OS=="win"', { |
609 # This could be gotten by not setting chromium_code, if that's OK. | 620 # This could be gotten by not setting chromium_code, if that's OK. |
610 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 621 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
611 }], | 622 }], |
612 ], | 623 ], |
613 }, | 624 }, |
614 ], | 625 ], |
615 } | 626 } |
OLD | NEW |