| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 | 71 |
| 72 # Enable profiling support. Only required on Windows. | 72 # Enable profiling support. Only required on Windows. |
| 73 'v8_enable_prof%': 0, | 73 'v8_enable_prof%': 0, |
| 74 | 74 |
| 75 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. | 75 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. |
| 76 'v8_no_strict_aliasing%': 0, | 76 'v8_no_strict_aliasing%': 0, |
| 77 | 77 |
| 78 # Chrome needs this definition unconditionally. For standalone V8 builds, | 78 # Chrome needs this definition unconditionally. For standalone V8 builds, |
| 79 # it's handled in gypfiles/standalone.gypi. | 79 # it's handled in gypfiles/standalone.gypi. |
| 80 'want_separate_host_toolset%': 1, | 80 'want_separate_host_toolset%': 1, |
| 81 'want_separate_host_toolset_mkpeephole%': 1, |
| 81 | 82 |
| 82 # Toolset the shell binary should be compiled for. Possible values are | 83 # Toolset the shell binary should be compiled for. Possible values are |
| 83 # 'host' and 'target'. | 84 # 'host' and 'target'. |
| 84 # The setting is ignored if want_separate_host_toolset is 0. | 85 # The setting is ignored if want_separate_host_toolset is 0. |
| 85 'v8_toolset_for_shell%': 'target', | 86 'v8_toolset_for_shell%': 'target', |
| 86 | 87 |
| 87 'host_os%': '<(OS)', | 88 'host_os%': '<(OS)', |
| 88 'werror%': '-Werror', | 89 'werror%': '-Werror', |
| 89 # For a shared library build, results in "libv8-<(soname_version).so". | 90 # For a shared library build, results in "libv8-<(soname_version).so". |
| 90 'soname_version%': '', | 91 'soname_version%': '', |
| (...skipping 1301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1392 ], | 1393 ], |
| 1393 }, | 1394 }, |
| 1394 'Release_x64': { | 1395 'Release_x64': { |
| 1395 'inherit_from': ['ReleaseBase'], | 1396 'inherit_from': ['ReleaseBase'], |
| 1396 }, | 1397 }, |
| 1397 }], | 1398 }], |
| 1398 ], | 1399 ], |
| 1399 }, # configurations | 1400 }, # configurations |
| 1400 }, # target_defaults | 1401 }, # target_defaults |
| 1401 } | 1402 } |
| OLD | NEW |