| 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 187 # or need a debug version of V8. This should produce near-release | 187 # or need a debug version of V8. This should produce near-release |
| 188 # speeds. | 188 # speeds. |
| 189 'v8_optimized_debug%': 0, | 189 'v8_optimized_debug%': 0, |
| 190 | 190 |
| 191 # Use external files for startup data blobs: | 191 # Use external files for startup data blobs: |
| 192 # the JS builtins sources and the start snapshot. | 192 # the JS builtins sources and the start snapshot. |
| 193 # Embedders that don't use standalone.gypi will need to add | 193 # Embedders that don't use standalone.gypi will need to add |
| 194 # their own default value. | 194 # their own default value. |
| 195 'v8_use_external_startup_data%': 1, | 195 'v8_use_external_startup_data%': 1, |
| 196 | 196 |
| 197 # Use a separate ignition snapshot file in standalone builds. | |
| 198 'v8_separate_ignition_snapshot': 1, | |
| 199 | |
| 200 # Relative path to icu.gyp from this file. | 197 # Relative path to icu.gyp from this file. |
| 201 'icu_gyp_path': '../third_party/icu/icu.gyp', | 198 'icu_gyp_path': '../third_party/icu/icu.gyp', |
| 202 | 199 |
| 203 'conditions': [ | 200 'conditions': [ |
| 204 ['(v8_target_arch=="arm" and host_arch!="arm") or \ | 201 ['(v8_target_arch=="arm" and host_arch!="arm") or \ |
| 205 (v8_target_arch=="arm64" and host_arch!="arm64") or \ | 202 (v8_target_arch=="arm64" and host_arch!="arm64") or \ |
| 206 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ | 203 (v8_target_arch=="mipsel" and host_arch!="mipsel") or \ |
| 207 (v8_target_arch=="mips64el" and host_arch!="mips64el") or \ | 204 (v8_target_arch=="mips64el" and host_arch!="mips64el") or \ |
| 208 (v8_target_arch=="x64" and host_arch!="x64") or \ | 205 (v8_target_arch=="x64" and host_arch!="x64") or \ |
| 209 (OS=="android" or OS=="qnx")', { | 206 (OS=="android" or OS=="qnx")', { |
| (...skipping 1176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1386 '-fsanitize=cfi-vcall', | 1383 '-fsanitize=cfi-vcall', |
| 1387 '-fsanitize=cfi-derived-cast', | 1384 '-fsanitize=cfi-derived-cast', |
| 1388 '-fsanitize=cfi-unrelated-cast', | 1385 '-fsanitize=cfi-unrelated-cast', |
| 1389 ], | 1386 ], |
| 1390 }], | 1387 }], |
| 1391 ], | 1388 ], |
| 1392 }, | 1389 }, |
| 1393 }], | 1390 }], |
| 1394 ], | 1391 ], |
| 1395 } | 1392 } |
| OLD | NEW |