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 1724 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1735 'base/accounting-allocator.h', | 1735 'base/accounting-allocator.h', |
1736 'base/adapters.h', | 1736 'base/adapters.h', |
1737 'base/atomic-utils.h', | 1737 'base/atomic-utils.h', |
1738 'base/atomicops.h', | 1738 'base/atomicops.h', |
1739 'base/atomicops_internals_arm64_gcc.h', | 1739 'base/atomicops_internals_arm64_gcc.h', |
1740 'base/atomicops_internals_arm_gcc.h', | 1740 'base/atomicops_internals_arm_gcc.h', |
1741 'base/atomicops_internals_atomicword_compat.h', | 1741 'base/atomicops_internals_atomicword_compat.h', |
1742 'base/atomicops_internals_mac.h', | 1742 'base/atomicops_internals_mac.h', |
1743 'base/atomicops_internals_mips_gcc.h', | 1743 'base/atomicops_internals_mips_gcc.h', |
1744 'base/atomicops_internals_mips64_gcc.h', | 1744 'base/atomicops_internals_mips64_gcc.h', |
1745 'base/atomicops_internals_portable.h', | |
1746 'base/atomicops_internals_ppc_gcc.h', | 1745 'base/atomicops_internals_ppc_gcc.h', |
1747 'base/atomicops_internals_s390_gcc.h', | 1746 'base/atomicops_internals_s390_gcc.h', |
1748 'base/atomicops_internals_tsan.h', | 1747 'base/atomicops_internals_tsan.h', |
1749 'base/atomicops_internals_x86_gcc.cc', | 1748 'base/atomicops_internals_x86_gcc.cc', |
1750 'base/atomicops_internals_x86_gcc.h', | 1749 'base/atomicops_internals_x86_gcc.h', |
1751 'base/atomicops_internals_x86_msvc.h', | 1750 'base/atomicops_internals_x86_msvc.h', |
1752 'base/bits.cc', | 1751 'base/bits.cc', |
1753 'base/bits.h', | 1752 'base/bits.h', |
1754 'base/build_config.h', | 1753 'base/build_config.h', |
1755 'base/compiler-specific.h', | 1754 'base/compiler-specific.h', |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1792 'base/utils/random-number-generator.cc', | 1791 'base/utils/random-number-generator.cc', |
1793 'base/utils/random-number-generator.h', | 1792 'base/utils/random-number-generator.h', |
1794 ], | 1793 ], |
1795 'conditions': [ | 1794 'conditions': [ |
1796 ['want_separate_host_toolset==1', { | 1795 ['want_separate_host_toolset==1', { |
1797 'toolsets': ['host', 'target'], | 1796 'toolsets': ['host', 'target'], |
1798 }, { | 1797 }, { |
1799 'toolsets': ['target'], | 1798 'toolsets': ['target'], |
1800 }], | 1799 }], |
1801 ['OS=="linux"', { | 1800 ['OS=="linux"', { |
1802 'conditions': [ | 1801 'link_settings': { |
1803 ['nacl_target_arch=="none"', { | 1802 'libraries': [ |
1804 'link_settings': { | 1803 '-ldl', |
1805 'libraries': [ | 1804 '-lrt' |
1806 '-ldl', | 1805 ], |
1807 '-lrt' | 1806 }, |
1808 ], | |
1809 }, | |
1810 }, { | |
1811 'defines': [ | |
1812 'V8_LIBRT_NOT_AVAILABLE=1', | |
1813 ], | |
1814 }], | |
1815 ], | |
1816 'sources': [ | 1807 'sources': [ |
1817 'base/platform/platform-linux.cc', | 1808 'base/platform/platform-linux.cc', |
1818 'base/platform/platform-posix.cc' | 1809 'base/platform/platform-posix.cc' |
1819 ], | 1810 ], |
1820 } | 1811 } |
1821 ], | 1812 ], |
1822 ['OS=="android"', { | 1813 ['OS=="android"', { |
1823 'sources': [ | 1814 'sources': [ |
1824 'base/platform/platform-posix.cc' | 1815 'base/platform/platform-posix.cc' |
1825 ], | 1816 ], |
(...skipping 555 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2381 'conditions': [ | 2372 'conditions': [ |
2382 ['want_separate_host_toolset==1', { | 2373 ['want_separate_host_toolset==1', { |
2383 'toolsets': ['host'], | 2374 'toolsets': ['host'], |
2384 }, { | 2375 }, { |
2385 'toolsets': ['target'], | 2376 'toolsets': ['target'], |
2386 }], | 2377 }], |
2387 ], | 2378 ], |
2388 }, | 2379 }, |
2389 ], | 2380 ], |
2390 } | 2381 } |
OLD | NEW |