| 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 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1363 ['want_separate_host_toolset==1', { | 1363 ['want_separate_host_toolset==1', { |
| 1364 'toolsets': ['host', 'target'], | 1364 'toolsets': ['host', 'target'], |
| 1365 }, { | 1365 }, { |
| 1366 'toolsets': ['target'], | 1366 'toolsets': ['target'], |
| 1367 }], | 1367 }], |
| 1368 ['OS=="linux"', { | 1368 ['OS=="linux"', { |
| 1369 'conditions': [ | 1369 'conditions': [ |
| 1370 ['nacl_target_arch=="none"', { | 1370 ['nacl_target_arch=="none"', { |
| 1371 'link_settings': { | 1371 'link_settings': { |
| 1372 'libraries': [ | 1372 'libraries': [ |
| 1373 '-ldl', |
| 1373 '-lrt' | 1374 '-lrt' |
| 1374 ], | 1375 ], |
| 1375 }, | 1376 }, |
| 1376 }, { | 1377 }, { |
| 1377 'defines': [ | 1378 'defines': [ |
| 1378 'V8_LIBRT_NOT_AVAILABLE=1', | 1379 'V8_LIBRT_NOT_AVAILABLE=1', |
| 1379 ], | 1380 ], |
| 1380 }], | 1381 }], |
| 1381 ], | 1382 ], |
| 1382 'sources': [ | 1383 'sources': [ |
| 1383 '../../src/base/platform/platform-linux.cc', | 1384 '../../src/base/platform/platform-linux.cc', |
| 1384 '../../src/base/platform/platform-posix.cc' | 1385 '../../src/base/platform/platform-posix.cc' |
| 1385 ], | 1386 ], |
| 1386 } | 1387 } |
| 1387 ], | 1388 ], |
| 1388 ['OS=="android"', { | 1389 ['OS=="android"', { |
| 1389 'sources': [ | 1390 'sources': [ |
| 1390 '../../src/base/platform/platform-posix.cc' | 1391 '../../src/base/platform/platform-posix.cc' |
| 1391 ], | 1392 ], |
| 1393 'link_settings': { |
| 1394 'libraries': [ |
| 1395 '-ldl' |
| 1396 ] |
| 1397 }, |
| 1392 'conditions': [ | 1398 'conditions': [ |
| 1393 ['host_os=="mac"', { | 1399 ['host_os=="mac"', { |
| 1394 'target_conditions': [ | 1400 'target_conditions': [ |
| 1395 ['_toolset=="host"', { | 1401 ['_toolset=="host"', { |
| 1396 'sources': [ | 1402 'sources': [ |
| 1397 '../../src/base/platform/platform-macos.cc' | 1403 '../../src/base/platform/platform-macos.cc' |
| 1398 ] | 1404 ] |
| 1399 }, { | 1405 }, { |
| 1400 'sources': [ | 1406 'sources': [ |
| 1401 '../../src/base/platform/platform-linux.cc' | 1407 '../../src/base/platform/platform-linux.cc' |
| (...skipping 418 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1820 }], | 1826 }], |
| 1821 ['want_separate_host_toolset==1', { | 1827 ['want_separate_host_toolset==1', { |
| 1822 'toolsets': ['host'], | 1828 'toolsets': ['host'], |
| 1823 }, { | 1829 }, { |
| 1824 'toolsets': ['target'], | 1830 'toolsets': ['target'], |
| 1825 }], | 1831 }], |
| 1826 ], | 1832 ], |
| 1827 }, | 1833 }, |
| 1828 ], | 1834 ], |
| 1829 } | 1835 } |
| OLD | NEW |