| 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 588 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 599 "src/api.cc", | 599 "src/api.cc", |
| 600 "src/api.h", | 600 "src/api.h", |
| 601 "src/api-natives.cc", | 601 "src/api-natives.cc", |
| 602 "src/api-natives.h", | 602 "src/api-natives.h", |
| 603 "src/arguments.cc", | 603 "src/arguments.cc", |
| 604 "src/arguments.h", | 604 "src/arguments.h", |
| 605 "src/assembler.cc", | 605 "src/assembler.cc", |
| 606 "src/assembler.h", | 606 "src/assembler.h", |
| 607 "src/assert-scope.h", | 607 "src/assert-scope.h", |
| 608 "src/assert-scope.cc", | 608 "src/assert-scope.cc", |
| 609 "src/ast-expression-visitor.cc", |
| 610 "src/ast-expression-visitor.h", |
| 609 "src/ast-literal-reindexer.cc", | 611 "src/ast-literal-reindexer.cc", |
| 610 "src/ast-literal-reindexer.h", | 612 "src/ast-literal-reindexer.h", |
| 611 "src/ast-numbering.cc", | 613 "src/ast-numbering.cc", |
| 612 "src/ast-numbering.h", | 614 "src/ast-numbering.h", |
| 613 "src/ast-value-factory.cc", | 615 "src/ast-value-factory.cc", |
| 614 "src/ast-value-factory.h", | 616 "src/ast-value-factory.h", |
| 615 "src/ast.cc", | 617 "src/ast.cc", |
| 616 "src/ast.h", | 618 "src/ast.h", |
| 617 "src/background-parsing-task.cc", | 619 "src/background-parsing-task.cc", |
| 618 "src/background-parsing-task.h", | 620 "src/background-parsing-task.h", |
| (...skipping 547 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1166 "src/transitions.cc", | 1168 "src/transitions.cc", |
| 1167 "src/transitions.h", | 1169 "src/transitions.h", |
| 1168 "src/type-feedback-vector-inl.h", | 1170 "src/type-feedback-vector-inl.h", |
| 1169 "src/type-feedback-vector.cc", | 1171 "src/type-feedback-vector.cc", |
| 1170 "src/type-feedback-vector.h", | 1172 "src/type-feedback-vector.h", |
| 1171 "src/type-info.cc", | 1173 "src/type-info.cc", |
| 1172 "src/type-info.h", | 1174 "src/type-info.h", |
| 1173 "src/types-inl.h", | 1175 "src/types-inl.h", |
| 1174 "src/types.cc", | 1176 "src/types.cc", |
| 1175 "src/types.h", | 1177 "src/types.h", |
| 1178 "src/typing-reset.cc", |
| 1179 "src/typing-reset.h", |
| 1176 "src/typing.cc", | 1180 "src/typing.cc", |
| 1177 "src/typing.h", | 1181 "src/typing.h", |
| 1178 "src/unbound-queue-inl.h", | 1182 "src/unbound-queue-inl.h", |
| 1179 "src/unbound-queue.h", | 1183 "src/unbound-queue.h", |
| 1180 "src/unicode-inl.h", | 1184 "src/unicode-inl.h", |
| 1181 "src/unicode.cc", | 1185 "src/unicode.cc", |
| 1182 "src/unicode.h", | 1186 "src/unicode.h", |
| 1183 "src/unicode-decoder.cc", | 1187 "src/unicode-decoder.cc", |
| 1184 "src/unicode-decoder.h", | 1188 "src/unicode-decoder.h", |
| 1185 "src/unique.h", | 1189 "src/unique.h", |
| (...skipping 592 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1778 if (!is_component_build) { | 1782 if (!is_component_build) { |
| 1779 sources += [ | 1783 sources += [ |
| 1780 "$target_gen_dir/d8-js.cc", | 1784 "$target_gen_dir/d8-js.cc", |
| 1781 ] | 1785 ] |
| 1782 } | 1786 } |
| 1783 if (v8_enable_i18n_support) { | 1787 if (v8_enable_i18n_support) { |
| 1784 deps += [ "//third_party/icu" ] | 1788 deps += [ "//third_party/icu" ] |
| 1785 } | 1789 } |
| 1786 } | 1790 } |
| 1787 } | 1791 } |
| OLD | NEW |