| 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 1199 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1210 "src/types-inl.h", | 1210 "src/types-inl.h", |
| 1211 "src/types.cc", | 1211 "src/types.cc", |
| 1212 "src/types.h", | 1212 "src/types.h", |
| 1213 "src/typing.cc", | 1213 "src/typing.cc", |
| 1214 "src/typing.h", | 1214 "src/typing.h", |
| 1215 "src/unbound-queue-inl.h", | 1215 "src/unbound-queue-inl.h", |
| 1216 "src/unbound-queue.h", | 1216 "src/unbound-queue.h", |
| 1217 "src/unicode-inl.h", | 1217 "src/unicode-inl.h", |
| 1218 "src/unicode.cc", | 1218 "src/unicode.cc", |
| 1219 "src/unicode.h", | 1219 "src/unicode.h", |
| 1220 "src/unicode-cache-inl.h", |
| 1221 "src/unicode-cache.h", |
| 1220 "src/unicode-decoder.cc", | 1222 "src/unicode-decoder.cc", |
| 1221 "src/unicode-decoder.h", | 1223 "src/unicode-decoder.h", |
| 1222 "src/unique.h", | 1224 "src/unique.h", |
| 1223 "src/utils.cc", | 1225 "src/utils.cc", |
| 1224 "src/utils.h", | 1226 "src/utils.h", |
| 1225 "src/v8.cc", | 1227 "src/v8.cc", |
| 1226 "src/v8.h", | 1228 "src/v8.h", |
| 1227 "src/v8memory.h", | 1229 "src/v8memory.h", |
| 1228 "src/v8threads.cc", | 1230 "src/v8threads.cc", |
| 1229 "src/v8threads.h", | 1231 "src/v8threads.h", |
| (...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1815 if (!is_component_build) { | 1817 if (!is_component_build) { |
| 1816 sources += [ | 1818 sources += [ |
| 1817 "$target_gen_dir/d8-js.cc", | 1819 "$target_gen_dir/d8-js.cc", |
| 1818 ] | 1820 ] |
| 1819 } | 1821 } |
| 1820 if (v8_enable_i18n_support) { | 1822 if (v8_enable_i18n_support) { |
| 1821 deps += [ "//third_party/icu" ] | 1823 deps += [ "//third_party/icu" ] |
| 1822 } | 1824 } |
| 1823 } | 1825 } |
| 1824 } | 1826 } |
| OLD | NEW |