| 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 1220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1231 "src/v8.h", | 1231 "src/v8.h", |
| 1232 "src/v8memory.h", | 1232 "src/v8memory.h", |
| 1233 "src/v8threads.cc", | 1233 "src/v8threads.cc", |
| 1234 "src/v8threads.h", | 1234 "src/v8threads.h", |
| 1235 "src/variables.cc", | 1235 "src/variables.cc", |
| 1236 "src/variables.h", | 1236 "src/variables.h", |
| 1237 "src/version.cc", | 1237 "src/version.cc", |
| 1238 "src/version.h", | 1238 "src/version.h", |
| 1239 "src/vm-state-inl.h", | 1239 "src/vm-state-inl.h", |
| 1240 "src/vm-state.h", | 1240 "src/vm-state.h", |
| 1241 "src/zone-type-cache.h", |
| 1241 "src/zone.cc", | 1242 "src/zone.cc", |
| 1242 "src/zone.h", | 1243 "src/zone.h", |
| 1243 "src/zone-allocator.h", | 1244 "src/zone-allocator.h", |
| 1244 "src/zone-containers.h", | 1245 "src/zone-containers.h", |
| 1245 "src/third_party/fdlibm/fdlibm.cc", | 1246 "src/third_party/fdlibm/fdlibm.cc", |
| 1246 "src/third_party/fdlibm/fdlibm.h", | 1247 "src/third_party/fdlibm/fdlibm.h", |
| 1247 ] | 1248 ] |
| 1248 | 1249 |
| 1249 if (v8_target_arch == "x86") { | 1250 if (v8_target_arch == "x86") { |
| 1250 sources += [ | 1251 sources += [ |
| (...skipping 569 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1820 if (!is_component_build) { | 1821 if (!is_component_build) { |
| 1821 sources += [ | 1822 sources += [ |
| 1822 "$target_gen_dir/d8-js.cc", | 1823 "$target_gen_dir/d8-js.cc", |
| 1823 ] | 1824 ] |
| 1824 } | 1825 } |
| 1825 if (v8_enable_i18n_support) { | 1826 if (v8_enable_i18n_support) { |
| 1826 deps += [ "//third_party/icu" ] | 1827 deps += [ "//third_party/icu" ] |
| 1827 } | 1828 } |
| 1828 } | 1829 } |
| 1829 } | 1830 } |
| OLD | NEW |