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 464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
475 'libraries': [ | 475 'libraries': [ |
476 # Needed for clock_gettime() used by src/platform-linux.cc. | 476 # Needed for clock_gettime() used by src/platform-linux.cc. |
477 '-lrt', | 477 '-lrt', |
478 ]}, | 478 ]}, |
479 'sources': [ | 479 'sources': [ |
480 '../../src/platform-linux.cc', | 480 '../../src/platform-linux.cc', |
481 '../../src/platform-posix.cc' | 481 '../../src/platform-posix.cc' |
482 ], | 482 ], |
483 } | 483 } |
484 ], | 484 ], |
| 485 ['OS=="freebsd"', { |
| 486 'link_settings': { |
| 487 'libraries': [ |
| 488 '-lc_r', |
| 489 '-L/usr/local/lib -lexecinfo', |
| 490 ]}, |
| 491 'sources': [ |
| 492 '../../src/platform-freebsd.cc', |
| 493 '../../src/platform-posix.cc' |
| 494 ], |
| 495 } |
| 496 ], |
485 ['OS=="mac"', { | 497 ['OS=="mac"', { |
486 'sources': [ | 498 'sources': [ |
487 '../../src/platform-macos.cc', | 499 '../../src/platform-macos.cc', |
488 '../../src/platform-posix.cc' | 500 '../../src/platform-posix.cc' |
489 ]}, | 501 ]}, |
490 ], | 502 ], |
491 ['OS=="win"', { | 503 ['OS=="win"', { |
492 'sources': [ | 504 'sources': [ |
493 '../../src/platform-win32.cc', | 505 '../../src/platform-win32.cc', |
494 ], | 506 ], |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
570 ], | 582 ], |
571 'conditions': [ | 583 'conditions': [ |
572 [ 'OS=="win"', { | 584 [ 'OS=="win"', { |
573 # This could be gotten by not setting chromium_code, if that's OK. | 585 # This could be gotten by not setting chromium_code, if that's OK. |
574 'defines': ['_CRT_SECURE_NO_WARNINGS'], | 586 'defines': ['_CRT_SECURE_NO_WARNINGS'], |
575 }], | 587 }], |
576 ], | 588 ], |
577 }, | 589 }, |
578 ], | 590 ], |
579 } | 591 } |
OLD | NEW |