| 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 # 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 |
| (...skipping 1136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1147 "src/runtime/runtime-collections.cc", | 1147 "src/runtime/runtime-collections.cc", |
| 1148 "src/runtime/runtime-compiler.cc", | 1148 "src/runtime/runtime-compiler.cc", |
| 1149 "src/runtime/runtime-date.cc", | 1149 "src/runtime/runtime-date.cc", |
| 1150 "src/runtime/runtime-debug.cc", | 1150 "src/runtime/runtime-debug.cc", |
| 1151 "src/runtime/runtime-forin.cc", | 1151 "src/runtime/runtime-forin.cc", |
| 1152 "src/runtime/runtime-function.cc", | 1152 "src/runtime/runtime-function.cc", |
| 1153 "src/runtime/runtime-futex.cc", | 1153 "src/runtime/runtime-futex.cc", |
| 1154 "src/runtime/runtime-generator.cc", | 1154 "src/runtime/runtime-generator.cc", |
| 1155 "src/runtime/runtime-i18n.cc", | 1155 "src/runtime/runtime-i18n.cc", |
| 1156 "src/runtime/runtime-internal.cc", | 1156 "src/runtime/runtime-internal.cc", |
| 1157 "src/runtime/runtime-interpreter.cc", |
| 1157 "src/runtime/runtime-json.cc", | 1158 "src/runtime/runtime-json.cc", |
| 1158 "src/runtime/runtime-literals.cc", | 1159 "src/runtime/runtime-literals.cc", |
| 1159 "src/runtime/runtime-liveedit.cc", | 1160 "src/runtime/runtime-liveedit.cc", |
| 1160 "src/runtime/runtime-maths.cc", | 1161 "src/runtime/runtime-maths.cc", |
| 1161 "src/runtime/runtime-numbers.cc", | 1162 "src/runtime/runtime-numbers.cc", |
| 1162 "src/runtime/runtime-object.cc", | 1163 "src/runtime/runtime-object.cc", |
| 1163 "src/runtime/runtime-observe.cc", | 1164 "src/runtime/runtime-observe.cc", |
| 1164 "src/runtime/runtime-operators.cc", | 1165 "src/runtime/runtime-operators.cc", |
| 1165 "src/runtime/runtime-proxy.cc", | 1166 "src/runtime/runtime-proxy.cc", |
| 1166 "src/runtime/runtime-regexp.cc", | 1167 "src/runtime/runtime-regexp.cc", |
| (...skipping 646 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1813 if (!is_component_build) { | 1814 if (!is_component_build) { |
| 1814 sources += [ | 1815 sources += [ |
| 1815 "$target_gen_dir/d8-js.cc", | 1816 "$target_gen_dir/d8-js.cc", |
| 1816 ] | 1817 ] |
| 1817 } | 1818 } |
| 1818 if (v8_enable_i18n_support) { | 1819 if (v8_enable_i18n_support) { |
| 1819 deps += [ "//third_party/icu" ] | 1820 deps += [ "//third_party/icu" ] |
| 1820 } | 1821 } |
| 1821 } | 1822 } |
| 1822 } | 1823 } |
| OLD | NEW |