| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 'sources': [ | 288 'sources': [ |
| 289 'test-platform-win32.cc', | 289 'test-platform-win32.cc', |
| 290 ], | 290 ], |
| 291 'msvs_settings': { | 291 'msvs_settings': { |
| 292 'VCCLCompilerTool': { | 292 'VCCLCompilerTool': { |
| 293 # MSVS wants this for gay-{precision,shortest}.cc. | 293 # MSVS wants this for gay-{precision,shortest}.cc. |
| 294 'AdditionalOptions': ['/bigobj'], | 294 'AdditionalOptions': ['/bigobj'], |
| 295 }, | 295 }, |
| 296 }, | 296 }, |
| 297 }], | 297 }], |
| 298 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64"', { | 298 ['v8_target_arch=="ppc" or v8_target_arch=="ppc64" \ |
| 299 or v8_target_arch=="arm" or v8_target_arch=="arm64"', { |
| 299 # disable fmadd/fmsub so that expected results match generated code in | 300 # disable fmadd/fmsub so that expected results match generated code in |
| 300 # RunFloat64MulAndFloat64Add1 and friends. | 301 # RunFloat64MulAndFloat64Add1 and friends. |
| 301 'cflags': ['-ffp-contract=off'], | 302 'cflags': ['-ffp-contract=off'], |
| 302 }], | 303 }], |
| 303 ['OS=="aix"', { | 304 ['OS=="aix"', { |
| 304 'ldflags': [ '-Wl,-bbigtoc' ], | 305 'ldflags': [ '-Wl,-bbigtoc' ], |
| 305 }], | 306 }], |
| 306 ['component=="shared_library"', { | 307 ['component=="shared_library"', { |
| 307 # cctest can't be built against a shared library, so we need to | 308 # cctest can't be built against a shared library, so we need to |
| 308 # depend on the underlying static target in that case. | 309 # depend on the underlying static target in that case. |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 '../../build/isolate.gypi', | 398 '../../build/isolate.gypi', |
| 398 ], | 399 ], |
| 399 'sources': [ | 400 'sources': [ |
| 400 'cctest.isolate', | 401 'cctest.isolate', |
| 401 ], | 402 ], |
| 402 }, | 403 }, |
| 403 ], | 404 ], |
| 404 }], | 405 }], |
| 405 ], | 406 ], |
| 406 } | 407 } |
| OLD | NEW |