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 1223 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1234 "src/string-search.h", | 1234 "src/string-search.h", |
1235 "src/string-stream.cc", | 1235 "src/string-stream.cc", |
1236 "src/string-stream.h", | 1236 "src/string-stream.h", |
1237 "src/strtod.cc", | 1237 "src/strtod.cc", |
1238 "src/strtod.h", | 1238 "src/strtod.h", |
1239 "src/token.cc", | 1239 "src/token.cc", |
1240 "src/token.h", | 1240 "src/token.h", |
1241 "src/transitions-inl.h", | 1241 "src/transitions-inl.h", |
1242 "src/transitions.cc", | 1242 "src/transitions.cc", |
1243 "src/transitions.h", | 1243 "src/transitions.h", |
| 1244 "src/type-cache.cc", |
| 1245 "src/type-cache.h", |
1244 "src/type-feedback-vector-inl.h", | 1246 "src/type-feedback-vector-inl.h", |
1245 "src/type-feedback-vector.cc", | 1247 "src/type-feedback-vector.cc", |
1246 "src/type-feedback-vector.h", | 1248 "src/type-feedback-vector.h", |
1247 "src/type-info.cc", | 1249 "src/type-info.cc", |
1248 "src/type-info.h", | 1250 "src/type-info.h", |
1249 "src/types-inl.h", | 1251 "src/types-inl.h", |
1250 "src/types.cc", | 1252 "src/types.cc", |
1251 "src/types.h", | 1253 "src/types.h", |
1252 "src/typing-asm.cc", | 1254 "src/typing-asm.cc", |
1253 "src/typing-asm.h", | 1255 "src/typing-asm.h", |
(...skipping 12 matching lines...) Expand all Loading... |
1266 "src/v8.h", | 1268 "src/v8.h", |
1267 "src/v8memory.h", | 1269 "src/v8memory.h", |
1268 "src/v8threads.cc", | 1270 "src/v8threads.cc", |
1269 "src/v8threads.h", | 1271 "src/v8threads.h", |
1270 "src/variables.cc", | 1272 "src/variables.cc", |
1271 "src/variables.h", | 1273 "src/variables.h", |
1272 "src/version.cc", | 1274 "src/version.cc", |
1273 "src/version.h", | 1275 "src/version.h", |
1274 "src/vm-state-inl.h", | 1276 "src/vm-state-inl.h", |
1275 "src/vm-state.h", | 1277 "src/vm-state.h", |
1276 "src/zone-type-cache.h", | |
1277 "src/zone.cc", | 1278 "src/zone.cc", |
1278 "src/zone.h", | 1279 "src/zone.h", |
1279 "src/zone-allocator.h", | 1280 "src/zone-allocator.h", |
1280 "src/zone-containers.h", | 1281 "src/zone-containers.h", |
1281 "src/third_party/fdlibm/fdlibm.cc", | 1282 "src/third_party/fdlibm/fdlibm.cc", |
1282 "src/third_party/fdlibm/fdlibm.h", | 1283 "src/third_party/fdlibm/fdlibm.h", |
1283 ] | 1284 ] |
1284 | 1285 |
1285 if (v8_target_arch == "x86") { | 1286 if (v8_target_arch == "x86") { |
1286 sources += [ | 1287 sources += [ |
(...skipping 550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1837 if (!is_component_build) { | 1838 if (!is_component_build) { |
1838 sources += [ | 1839 sources += [ |
1839 "$target_gen_dir/d8-js.cc", | 1840 "$target_gen_dir/d8-js.cc", |
1840 ] | 1841 ] |
1841 } | 1842 } |
1842 if (v8_enable_i18n_support) { | 1843 if (v8_enable_i18n_support) { |
1843 deps += [ "//third_party/icu" ] | 1844 deps += [ "//third_party/icu" ] |
1844 } | 1845 } |
1845 } | 1846 } |
1846 } | 1847 } |
OLD | NEW |