| OLD | NEW |
| 1 # Copyright 2013 the V8 project authors. All rights reserved. | 1 # Copyright 2013 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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 69 # Enable profiling support. Only required on Windows. | 69 # Enable profiling support. Only required on Windows. |
| 70 'v8_enable_prof%': 0, | 70 'v8_enable_prof%': 0, |
| 71 | 71 |
| 72 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. | 72 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. |
| 73 'v8_no_strict_aliasing%': 0, | 73 'v8_no_strict_aliasing%': 0, |
| 74 | 74 |
| 75 # Chrome needs this definition unconditionally. For standalone V8 builds, | 75 # Chrome needs this definition unconditionally. For standalone V8 builds, |
| 76 # it's handled in gypfiles/standalone.gypi. | 76 # it's handled in gypfiles/standalone.gypi. |
| 77 'want_separate_host_toolset%': 1, | 77 'want_separate_host_toolset%': 1, |
| 78 | 78 |
| 79 # Toolset the d8 binary should be compiled for. Possible values are 'host' | |
| 80 # and 'target'. If you want to run v8 tests, it needs to be set to 'target'. | |
| 81 # The setting is ignored if want_separate_host_toolset is 0. | |
| 82 'v8_toolset_for_d8%': 'target', | |
| 83 | |
| 84 # Toolset the shell binary should be compiled for. Possible values are | 79 # Toolset the shell binary should be compiled for. Possible values are |
| 85 # 'host' and 'target'. | 80 # 'host' and 'target'. |
| 86 # The setting is ignored if want_separate_host_toolset is 0. | 81 # The setting is ignored if want_separate_host_toolset is 0. |
| 87 'v8_toolset_for_shell%': 'target', | 82 'v8_toolset_for_shell%': 'target', |
| 88 | 83 |
| 89 'host_os%': '<(OS)', | 84 'host_os%': '<(OS)', |
| 90 'werror%': '-Werror', | 85 'werror%': '-Werror', |
| 91 # For a shared library build, results in "libv8-<(soname_version).so". | 86 # For a shared library build, results in "libv8-<(soname_version).so". |
| 92 'soname_version%': '', | 87 'soname_version%': '', |
| 93 | 88 |
| (...skipping 1296 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1390 ], | 1385 ], |
| 1391 }, | 1386 }, |
| 1392 'Release_x64': { | 1387 'Release_x64': { |
| 1393 'inherit_from': ['ReleaseBase'], | 1388 'inherit_from': ['ReleaseBase'], |
| 1394 }, | 1389 }, |
| 1395 }], | 1390 }], |
| 1396 ], | 1391 ], |
| 1397 }, # configurations | 1392 }, # configurations |
| 1398 }, # target_defaults | 1393 }, # target_defaults |
| 1399 } | 1394 } |
| OLD | NEW |