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 620 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
631 "src/builtins.cc", | 631 "src/builtins.cc", |
632 "src/builtins.h", | 632 "src/builtins.h", |
633 "src/bytecodes-irregexp.h", | 633 "src/bytecodes-irregexp.h", |
634 "src/cancelable-task.cc", | 634 "src/cancelable-task.cc", |
635 "src/cancelable-task.h", | 635 "src/cancelable-task.h", |
636 "src/cached-powers.cc", | 636 "src/cached-powers.cc", |
637 "src/cached-powers.h", | 637 "src/cached-powers.h", |
638 "src/char-predicates.cc", | 638 "src/char-predicates.cc", |
639 "src/char-predicates-inl.h", | 639 "src/char-predicates-inl.h", |
640 "src/char-predicates.h", | 640 "src/char-predicates.h", |
641 "src/checks.cc", | |
642 "src/checks.h", | 641 "src/checks.h", |
643 "src/circular-queue-inl.h", | 642 "src/circular-queue-inl.h", |
644 "src/circular-queue.h", | 643 "src/circular-queue.h", |
645 "src/code-factory.cc", | 644 "src/code-factory.cc", |
646 "src/code-factory.h", | 645 "src/code-factory.h", |
647 "src/code-stubs.cc", | 646 "src/code-stubs.cc", |
648 "src/code-stubs.h", | 647 "src/code-stubs.h", |
649 "src/code-stubs-hydrogen.cc", | 648 "src/code-stubs-hydrogen.cc", |
650 "src/code.h", | 649 "src/code.h", |
651 "src/codegen.cc", | 650 "src/codegen.cc", |
(...skipping 1126 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1778 if (!is_component_build) { | 1777 if (!is_component_build) { |
1779 sources += [ | 1778 sources += [ |
1780 "$target_gen_dir/d8-js.cc", | 1779 "$target_gen_dir/d8-js.cc", |
1781 ] | 1780 ] |
1782 } | 1781 } |
1783 if (v8_enable_i18n_support) { | 1782 if (v8_enable_i18n_support) { |
1784 deps += [ "//third_party/icu" ] | 1783 deps += [ "//third_party/icu" ] |
1785 } | 1784 } |
1786 } | 1785 } |
1787 } | 1786 } |
OLD | NEW |