| 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 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 636 "src/api.cc", | 636 "src/api.cc", |
| 637 "src/api.h", | 637 "src/api.h", |
| 638 "src/api-natives.cc", | 638 "src/api-natives.cc", |
| 639 "src/api-natives.h", | 639 "src/api-natives.h", |
| 640 "src/arguments.cc", | 640 "src/arguments.cc", |
| 641 "src/arguments.h", | 641 "src/arguments.h", |
| 642 "src/assembler.cc", | 642 "src/assembler.cc", |
| 643 "src/assembler.h", | 643 "src/assembler.h", |
| 644 "src/assert-scope.h", | 644 "src/assert-scope.h", |
| 645 "src/assert-scope.cc", | 645 "src/assert-scope.cc", |
| 646 "src/ast-expression-visitor.cc", |
| 647 "src/ast-expression-visitor.h", |
| 646 "src/ast-literal-reindexer.cc", | 648 "src/ast-literal-reindexer.cc", |
| 647 "src/ast-literal-reindexer.h", | 649 "src/ast-literal-reindexer.h", |
| 648 "src/ast-numbering.cc", | 650 "src/ast-numbering.cc", |
| 649 "src/ast-numbering.h", | 651 "src/ast-numbering.h", |
| 650 "src/ast-value-factory.cc", | 652 "src/ast-value-factory.cc", |
| 651 "src/ast-value-factory.h", | 653 "src/ast-value-factory.h", |
| 652 "src/ast.cc", | 654 "src/ast.cc", |
| 653 "src/ast.h", | 655 "src/ast.h", |
| 654 "src/background-parsing-task.cc", | 656 "src/background-parsing-task.cc", |
| 655 "src/background-parsing-task.h", | 657 "src/background-parsing-task.h", |
| (...skipping 546 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1202 "src/transitions.cc", | 1204 "src/transitions.cc", |
| 1203 "src/transitions.h", | 1205 "src/transitions.h", |
| 1204 "src/type-feedback-vector-inl.h", | 1206 "src/type-feedback-vector-inl.h", |
| 1205 "src/type-feedback-vector.cc", | 1207 "src/type-feedback-vector.cc", |
| 1206 "src/type-feedback-vector.h", | 1208 "src/type-feedback-vector.h", |
| 1207 "src/type-info.cc", | 1209 "src/type-info.cc", |
| 1208 "src/type-info.h", | 1210 "src/type-info.h", |
| 1209 "src/types-inl.h", | 1211 "src/types-inl.h", |
| 1210 "src/types.cc", | 1212 "src/types.cc", |
| 1211 "src/types.h", | 1213 "src/types.h", |
| 1214 "src/typing-reset.cc", |
| 1215 "src/typing-reset.h", |
| 1212 "src/typing.cc", | 1216 "src/typing.cc", |
| 1213 "src/typing.h", | 1217 "src/typing.h", |
| 1214 "src/unbound-queue-inl.h", | 1218 "src/unbound-queue-inl.h", |
| 1215 "src/unbound-queue.h", | 1219 "src/unbound-queue.h", |
| 1216 "src/unicode-inl.h", | 1220 "src/unicode-inl.h", |
| 1217 "src/unicode.cc", | 1221 "src/unicode.cc", |
| 1218 "src/unicode.h", | 1222 "src/unicode.h", |
| 1219 "src/unicode-cache-inl.h", | 1223 "src/unicode-cache-inl.h", |
| 1220 "src/unicode-cache.h", | 1224 "src/unicode-cache.h", |
| 1221 "src/unicode-decoder.cc", | 1225 "src/unicode-decoder.cc", |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1816 if (!is_component_build) { | 1820 if (!is_component_build) { |
| 1817 sources += [ | 1821 sources += [ |
| 1818 "$target_gen_dir/d8-js.cc", | 1822 "$target_gen_dir/d8-js.cc", |
| 1819 ] | 1823 ] |
| 1820 } | 1824 } |
| 1821 if (v8_enable_i18n_support) { | 1825 if (v8_enable_i18n_support) { |
| 1822 deps += [ "//third_party/icu" ] | 1826 deps += [ "//third_party/icu" ] |
| 1823 } | 1827 } |
| 1824 } | 1828 } |
| 1825 } | 1829 } |
| OLD | NEW |