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 | 9 |
9 # Because standalone V8 builds are not supported, assume this is part of a | 10 # Because standalone V8 builds are not supported, assume this is part of a |
10 # Chromium build. | 11 # Chromium build. |
11 import("//build/module_args/v8.gni") | 12 import("//build/module_args/v8.gni") |
12 | 13 |
13 # TODO(jochen): These will need to be user-settable to support standalone V8 | 14 # TODO(jochen): These will need to be user-settable to support standalone V8 |
14 # builds. | 15 # builds. |
15 v8_deprecation_warnings = false | 16 v8_deprecation_warnings = false |
16 v8_enable_disassembler = false | 17 v8_enable_disassembler = false |
17 v8_enable_gdbjit = false | 18 v8_enable_gdbjit = false |
(...skipping 1821 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1839 if (!is_component_build) { | 1840 if (!is_component_build) { |
1840 sources += [ | 1841 sources += [ |
1841 "$target_gen_dir/d8-js.cc", | 1842 "$target_gen_dir/d8-js.cc", |
1842 ] | 1843 ] |
1843 } | 1844 } |
1844 if (v8_enable_i18n_support) { | 1845 if (v8_enable_i18n_support) { |
1845 deps += [ "//third_party/icu" ] | 1846 deps += [ "//third_party/icu" ] |
1846 } | 1847 } |
1847 } | 1848 } |
1848 } | 1849 } |
OLD | NEW |