OLD | NEW |
1 # Copyright 2016 the V8 project authors. All rights reserved. | 1 # Copyright 2016 the V8 project 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/v8_target_cpu.gni") | 5 import("//build/config/v8_target_cpu.gni") |
6 import("//build/config/sanitizers/sanitizers.gni") | 6 import("//build/config/sanitizers/sanitizers.gni") |
7 | 7 |
8 declare_args() { | 8 declare_args() { |
9 # Indicate if valgrind was fetched as a custom deps to make it available on | 9 # Indicate if valgrind was fetched as a custom deps to make it available on |
10 # swarming. | 10 # swarming. |
11 v8_has_valgrind = false | 11 v8_has_valgrind = false |
12 | 12 |
13 # Indicate if gcmole was fetched as a hook to make it available on swarming. | 13 # Indicate if gcmole was fetched as a hook to make it available on swarming. |
14 v8_gcmole = false | 14 v8_gcmole = false |
15 | 15 |
16 # Turns on compiler optimizations in V8 in Debug build. | 16 # Turns on compiler optimizations in V8 in Debug build. |
17 v8_optimized_debug = true | 17 v8_optimized_debug = true |
18 | 18 |
19 # Enable the snapshot feature, for fast context creation. | 19 # Enable the snapshot feature, for fast context creation. |
20 # http://v8project.blogspot.com/2015/09/custom-startup-snapshots.html | 20 # http://v8project.blogspot.com/2015/09/custom-startup-snapshots.html |
21 v8_use_snapshot = true | 21 v8_use_snapshot = true |
22 | 22 |
23 # Use external files for startup data blobs: | 23 # Use external files for startup data blobs: |
24 # the JS builtins sources and the start snapshot. | 24 # the JS builtins sources and the start snapshot. |
25 v8_use_external_startup_data = "" | 25 v8_use_external_startup_data = !is_ios |
26 } | |
27 | |
28 if (v8_use_external_startup_data == "") { | |
29 # If not specified as a gn arg, use external startup data by default if | |
30 # a snapshot is used and if we're not on ios. | |
31 v8_use_external_startup_data = v8_use_snapshot && !is_ios | |
32 } | 26 } |
33 | 27 |
34 ############################################################################### | 28 ############################################################################### |
35 # Templates | 29 # Templates |
36 # | 30 # |
37 | 31 |
38 # Points to // in v8 stand-alone or to //v8/ in chromium. We need absolute | 32 # Points to // in v8 stand-alone or to //v8/ in chromium. We need absolute |
39 # paths for all configs in templates as they are shared in different | 33 # paths for all configs in templates as they are shared in different |
40 # subdirectories. | 34 # subdirectories. |
41 path_prefix = get_path_info("../", "abspath") | 35 path_prefix = get_path_info("../", "abspath") |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 } | 77 } |
84 | 78 |
85 template("v8_component") { | 79 template("v8_component") { |
86 component(target_name) { | 80 component(target_name) { |
87 forward_variables_from(invoker, "*", [ "configs" ]) | 81 forward_variables_from(invoker, "*", [ "configs" ]) |
88 configs += invoker.configs | 82 configs += invoker.configs |
89 configs -= remove_configs | 83 configs -= remove_configs |
90 configs += add_configs | 84 configs += add_configs |
91 } | 85 } |
92 } | 86 } |
OLD | NEW |