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 | 8 |
9 # Because standalone V8 builds are not supported, assume this is part of a | 9 # Because standalone V8 builds are not supported, assume this is part of a |
10 # Chromium build. | 10 # Chromium build. |
(...skipping 1195 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1206 "src/transitions.cc", | 1206 "src/transitions.cc", |
1207 "src/transitions.h", | 1207 "src/transitions.h", |
1208 "src/type-feedback-vector-inl.h", | 1208 "src/type-feedback-vector-inl.h", |
1209 "src/type-feedback-vector.cc", | 1209 "src/type-feedback-vector.cc", |
1210 "src/type-feedback-vector.h", | 1210 "src/type-feedback-vector.h", |
1211 "src/type-info.cc", | 1211 "src/type-info.cc", |
1212 "src/type-info.h", | 1212 "src/type-info.h", |
1213 "src/types-inl.h", | 1213 "src/types-inl.h", |
1214 "src/types.cc", | 1214 "src/types.cc", |
1215 "src/types.h", | 1215 "src/types.h", |
| 1216 "src/typing-asm.cc", |
| 1217 "src/typing-asm.h", |
1216 "src/typing-reset.cc", | 1218 "src/typing-reset.cc", |
1217 "src/typing-reset.h", | 1219 "src/typing-reset.h", |
1218 "src/typing.cc", | 1220 "src/typing.cc", |
1219 "src/typing.h", | 1221 "src/typing.h", |
1220 "src/unbound-queue-inl.h", | 1222 "src/unbound-queue-inl.h", |
1221 "src/unbound-queue.h", | 1223 "src/unbound-queue.h", |
1222 "src/unicode-inl.h", | 1224 "src/unicode-inl.h", |
1223 "src/unicode.cc", | 1225 "src/unicode.cc", |
1224 "src/unicode.h", | 1226 "src/unicode.h", |
1225 "src/unicode-cache-inl.h", | 1227 "src/unicode-cache-inl.h", |
(...skipping 597 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1823 if (!is_component_build) { | 1825 if (!is_component_build) { |
1824 sources += [ | 1826 sources += [ |
1825 "$target_gen_dir/d8-js.cc", | 1827 "$target_gen_dir/d8-js.cc", |
1826 ] | 1828 ] |
1827 } | 1829 } |
1828 if (v8_enable_i18n_support) { | 1830 if (v8_enable_i18n_support) { |
1829 deps += [ "//third_party/icu" ] | 1831 deps += [ "//third_party/icu" ] |
1830 } | 1832 } |
1831 } | 1833 } |
1832 } | 1834 } |
OLD | NEW |