| 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 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 63 # Enable profiling support. Only required on Windows. | 63 # Enable profiling support. Only required on Windows. |
| 64 'v8_enable_prof%': 0, | 64 'v8_enable_prof%': 0, |
| 65 | 65 |
| 66 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. | 66 # Some versions of GCC 4.5 seem to need -fno-strict-aliasing. |
| 67 'v8_no_strict_aliasing%': 0, | 67 'v8_no_strict_aliasing%': 0, |
| 68 | 68 |
| 69 # Chrome needs this definition unconditionally. For standalone V8 builds, | 69 # Chrome needs this definition unconditionally. For standalone V8 builds, |
| 70 # it's handled in build/standalone.gypi. | 70 # it's handled in build/standalone.gypi. |
| 71 'want_separate_host_toolset%': 1, | 71 'want_separate_host_toolset%': 1, |
| 72 | 72 |
| 73 # Toolset the d8 binary should be compiled for. Possible values are 'host' |
| 74 # and 'target'. If you want to run v8 tests, it needs to be set to 'target'. |
| 75 # The setting is ignored if want_separate_host_toolset is 0. |
| 76 'v8_toolset_for_d8%': 'target', |
| 77 |
| 73 'host_os%': '<(OS)', | 78 'host_os%': '<(OS)', |
| 74 'werror%': '-Werror', | 79 'werror%': '-Werror', |
| 75 # For a shared library build, results in "libv8-<(soname_version).so". | 80 # For a shared library build, results in "libv8-<(soname_version).so". |
| 76 'soname_version%': '', | 81 'soname_version%': '', |
| 77 | 82 |
| 78 # Allow to suppress the array bounds warning (default is no suppression). | 83 # Allow to suppress the array bounds warning (default is no suppression). |
| 79 'wno_array_bounds%': '', | 84 'wno_array_bounds%': '', |
| 80 }, | 85 }, |
| 81 'target_defaults': { | 86 'target_defaults': { |
| 82 'conditions': [ | 87 'conditions': [ |
| (...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 683 'OptimizeReferences': '2', | 688 'OptimizeReferences': '2', |
| 684 'EnableCOMDATFolding': '2', | 689 'EnableCOMDATFolding': '2', |
| 685 }, | 690 }, |
| 686 }, | 691 }, |
| 687 }], # OS=="win" | 692 }], # OS=="win" |
| 688 ], # conditions | 693 ], # conditions |
| 689 }, # Release | 694 }, # Release |
| 690 }, # configurations | 695 }, # configurations |
| 691 }, # target_defaults | 696 }, # target_defaults |
| 692 } | 697 } |
| OLD | NEW |