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 1146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1157 '../../src/base/utils/random-number-generator.cc', | 1157 '../../src/base/utils/random-number-generator.cc', |
1158 '../../src/base/utils/random-number-generator.h', | 1158 '../../src/base/utils/random-number-generator.h', |
1159 ], | 1159 ], |
1160 'conditions': [ | 1160 'conditions': [ |
1161 ['want_separate_host_toolset==1', { | 1161 ['want_separate_host_toolset==1', { |
1162 'toolsets': ['host', 'target'], | 1162 'toolsets': ['host', 'target'], |
1163 }, { | 1163 }, { |
1164 'toolsets': ['target'], | 1164 'toolsets': ['target'], |
1165 }], | 1165 }], |
1166 ['OS=="linux"', { | 1166 ['OS=="linux"', { |
1167 'link_settings': { | 1167 'conditions': [ |
1168 'libraries': [ | 1168 ['nacl_target_arch=="none"', { |
1169 '-lrt' | 1169 'link_settings': { |
1170 ] | 1170 'libraries': [ |
1171 }, | 1171 '-lrt' |
| 1172 ], |
| 1173 }, |
| 1174 }, { |
| 1175 'defines': [ |
| 1176 'V8_LIBRT_NOT_AVAILABLE=1', |
| 1177 ], |
| 1178 }], |
| 1179 ], |
1172 'sources': [ | 1180 'sources': [ |
1173 '../../src/base/platform/platform-linux.cc', | 1181 '../../src/base/platform/platform-linux.cc', |
1174 '../../src/base/platform/platform-posix.cc' | 1182 '../../src/base/platform/platform-posix.cc' |
1175 ], | 1183 ], |
1176 } | 1184 } |
1177 ], | 1185 ], |
1178 ['OS=="android"', { | 1186 ['OS=="android"', { |
1179 'sources': [ | 1187 'sources': [ |
1180 '../../src/base/platform/platform-posix.cc' | 1188 '../../src/base/platform/platform-posix.cc' |
1181 ], | 1189 ], |
(...skipping 393 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1575 }], | 1583 }], |
1576 ['v8_compress_startup_data=="bz2"', { | 1584 ['v8_compress_startup_data=="bz2"', { |
1577 'libraries': [ | 1585 'libraries': [ |
1578 '-lbz2', | 1586 '-lbz2', |
1579 ] | 1587 ] |
1580 }], | 1588 }], |
1581 ], | 1589 ], |
1582 }, | 1590 }, |
1583 ], | 1591 ], |
1584 } | 1592 } |
OLD | NEW |