| 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 1231 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1242 '../../src/base/utils/random-number-generator.cc', | 1242 '../../src/base/utils/random-number-generator.cc', |
| 1243 '../../src/base/utils/random-number-generator.h', | 1243 '../../src/base/utils/random-number-generator.h', |
| 1244 ], | 1244 ], |
| 1245 'conditions': [ | 1245 'conditions': [ |
| 1246 ['want_separate_host_toolset==1', { | 1246 ['want_separate_host_toolset==1', { |
| 1247 'toolsets': ['host', 'target'], | 1247 'toolsets': ['host', 'target'], |
| 1248 }, { | 1248 }, { |
| 1249 'toolsets': ['target'], | 1249 'toolsets': ['target'], |
| 1250 }], | 1250 }], |
| 1251 ['OS=="linux"', { | 1251 ['OS=="linux"', { |
| 1252 'link_settings': { | 1252 'conditions': [ |
| 1253 'libraries': [ | 1253 ['nacl_target_arch=="none"', { |
| 1254 '-lrt' | 1254 'link_settings': { |
| 1255 ] | 1255 'libraries': [ |
| 1256 }, | 1256 '-lrt' |
| 1257 ], |
| 1258 }, |
| 1259 }, { |
| 1260 'defines': [ |
| 1261 'V8_LIBRT_NOT_AVAILABLE=1', |
| 1262 ], |
| 1263 }], |
| 1264 ], |
| 1257 'sources': [ | 1265 'sources': [ |
| 1258 '../../src/base/platform/platform-linux.cc', | 1266 '../../src/base/platform/platform-linux.cc', |
| 1259 '../../src/base/platform/platform-posix.cc' | 1267 '../../src/base/platform/platform-posix.cc' |
| 1260 ], | 1268 ], |
| 1261 } | 1269 } |
| 1262 ], | 1270 ], |
| 1263 ['OS=="android"', { | 1271 ['OS=="android"', { |
| 1264 'sources': [ | 1272 'sources': [ |
| 1265 '../../src/base/platform/platform-posix.cc' | 1273 '../../src/base/platform/platform-posix.cc' |
| 1266 ], | 1274 ], |
| (...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1691 }], | 1699 }], |
| 1692 ['v8_compress_startup_data=="bz2"', { | 1700 ['v8_compress_startup_data=="bz2"', { |
| 1693 'libraries': [ | 1701 'libraries': [ |
| 1694 '-lbz2', | 1702 '-lbz2', |
| 1695 ] | 1703 ] |
| 1696 }], | 1704 }], |
| 1697 ], | 1705 ], |
| 1698 }, | 1706 }, |
| 1699 ], | 1707 ], |
| 1700 } | 1708 } |
| OLD | NEW |