| 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 1135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1146 "src/snapshot/snapshot-common.cc", | 1146 "src/snapshot/snapshot-common.cc", |
| 1147 "src/snapshot/snapshot-source-sink.cc", | 1147 "src/snapshot/snapshot-source-sink.cc", |
| 1148 "src/snapshot/snapshot-source-sink.h", | 1148 "src/snapshot/snapshot-source-sink.h", |
| 1149 "src/splay-tree.h", | 1149 "src/splay-tree.h", |
| 1150 "src/splay-tree-inl.h", | 1150 "src/splay-tree-inl.h", |
| 1151 "src/snapshot/snapshot.h", | 1151 "src/snapshot/snapshot.h", |
| 1152 "src/startup-data-util.h", | 1152 "src/startup-data-util.h", |
| 1153 "src/startup-data-util.cc", | 1153 "src/startup-data-util.cc", |
| 1154 "src/string-builder.cc", | 1154 "src/string-builder.cc", |
| 1155 "src/string-builder.h", | 1155 "src/string-builder.h", |
| 1156 "src/string-search.cc", | |
| 1157 "src/string-search.h", | 1156 "src/string-search.h", |
| 1158 "src/string-stream.cc", | 1157 "src/string-stream.cc", |
| 1159 "src/string-stream.h", | 1158 "src/string-stream.h", |
| 1160 "src/strings-storage.cc", | 1159 "src/strings-storage.cc", |
| 1161 "src/strings-storage.h", | 1160 "src/strings-storage.h", |
| 1162 "src/strtod.cc", | 1161 "src/strtod.cc", |
| 1163 "src/strtod.h", | 1162 "src/strtod.h", |
| 1164 "src/token.cc", | 1163 "src/token.cc", |
| 1165 "src/token.h", | 1164 "src/token.h", |
| 1166 "src/transitions-inl.h", | 1165 "src/transitions-inl.h", |
| (...skipping 612 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1779 if (!is_component_build) { | 1778 if (!is_component_build) { |
| 1780 sources += [ | 1779 sources += [ |
| 1781 "$target_gen_dir/d8-js.cc", | 1780 "$target_gen_dir/d8-js.cc", |
| 1782 ] | 1781 ] |
| 1783 } | 1782 } |
| 1784 if (v8_enable_i18n_support) { | 1783 if (v8_enable_i18n_support) { |
| 1785 deps += [ "//third_party/icu" ] | 1784 deps += [ "//third_party/icu" ] |
| 1786 } | 1785 } |
| 1787 } | 1786 } |
| 1788 } | 1787 } |
| OLD | NEW |