| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
| 6 import("//build/config/arm.gni") | 6 import("//build/config/arm.gni") |
| 7 import("//build/config/mips.gni") | 7 import("//build/config/mips.gni") |
| 8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| 11 import("//build/config/android/rules.gni") | 11 import("//build/config/android/rules.gni") |
| 12 } | 12 } |
| 13 | 13 |
| 14 import("gni/v8.gni") | 14 import("gni/v8.gni") |
| 15 import("//build_overrides/v8.gni") | 15 import("//build_overrides/v8.gni") |
| 16 | 16 |
| 17 import("snapshot_toolchain.gni") | 17 import("snapshot_toolchain.gni") |
| 18 | 18 |
| 19 declare_args() { | 19 declare_args() { |
| 20 # Enable the snapshot feature, for fast context creation. | 20 # Enable the snapshot feature, for fast context creation. |
| 21 # http://v8project.blogspot.com/2015/09/custom-startup-snapshots.html | 21 # http://v8project.blogspot.com/2015/09/custom-startup-snapshots.html |
| 22 v8_use_snapshot = true | 22 v8_use_snapshot = true |
| 23 | 23 |
| 24 # Use external files for startup data blobs: | 24 # Use external files for startup data blobs: |
| 25 # the JS builtins sources and the start snapshot. | 25 # the JS builtins sources and the start snapshot. |
| 26 v8_use_external_startup_data = true | 26 v8_use_external_startup_data = !is_ios |
| 27 | 27 |
| 28 # Sets -DVERIFY_HEAP. | 28 # Sets -DVERIFY_HEAP. |
| 29 v8_enable_verify_heap = false | 29 v8_enable_verify_heap = false |
| 30 | 30 |
| 31 # Enable compiler warnings when using V8_DEPRECATED apis. | 31 # Enable compiler warnings when using V8_DEPRECATED apis. |
| 32 v8_deprecation_warnings = false | 32 v8_deprecation_warnings = false |
| 33 | 33 |
| 34 # Enable compiler warnings when using V8_DEPRECATE_SOON apis. | 34 # Enable compiler warnings when using V8_DEPRECATE_SOON apis. |
| 35 v8_imminent_deprecation_warnings = false | 35 v8_imminent_deprecation_warnings = false |
| 36 | 36 |
| (...skipping 2191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2228 sources = [ | 2228 sources = [ |
| 2229 "test/fuzzer/wasm-asmjs.cc", | 2229 "test/fuzzer/wasm-asmjs.cc", |
| 2230 ] | 2230 ] |
| 2231 | 2231 |
| 2232 deps = [ | 2232 deps = [ |
| 2233 ":fuzzer_support", | 2233 ":fuzzer_support", |
| 2234 ] | 2234 ] |
| 2235 | 2235 |
| 2236 configs = [ ":internal_config" ] | 2236 configs = [ ":internal_config" ] |
| 2237 } | 2237 } |
| OLD | NEW |