| 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 694 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 705 "src/compiler/greedy-allocator.cc", | 705 "src/compiler/greedy-allocator.cc", |
| 706 "src/compiler/greedy-allocator.h", | 706 "src/compiler/greedy-allocator.h", |
| 707 "src/compiler/instruction-codes.h", | 707 "src/compiler/instruction-codes.h", |
| 708 "src/compiler/instruction-selector-impl.h", | 708 "src/compiler/instruction-selector-impl.h", |
| 709 "src/compiler/instruction-selector.cc", | 709 "src/compiler/instruction-selector.cc", |
| 710 "src/compiler/instruction-selector.h", | 710 "src/compiler/instruction-selector.h", |
| 711 "src/compiler/instruction.cc", | 711 "src/compiler/instruction.cc", |
| 712 "src/compiler/instruction.h", | 712 "src/compiler/instruction.h", |
| 713 "src/compiler/js-builtin-reducer.cc", | 713 "src/compiler/js-builtin-reducer.cc", |
| 714 "src/compiler/js-builtin-reducer.h", | 714 "src/compiler/js-builtin-reducer.h", |
| 715 "src/compiler/js-context-relaxation.cc", |
| 716 "src/compiler/js-context-relaxation.h", |
| 715 "src/compiler/js-context-specialization.cc", | 717 "src/compiler/js-context-specialization.cc", |
| 716 "src/compiler/js-context-specialization.h", | 718 "src/compiler/js-context-specialization.h", |
| 717 "src/compiler/js-frame-specialization.cc", | 719 "src/compiler/js-frame-specialization.cc", |
| 718 "src/compiler/js-frame-specialization.h", | 720 "src/compiler/js-frame-specialization.h", |
| 719 "src/compiler/js-generic-lowering.cc", | 721 "src/compiler/js-generic-lowering.cc", |
| 720 "src/compiler/js-generic-lowering.h", | 722 "src/compiler/js-generic-lowering.h", |
| 721 "src/compiler/js-graph.cc", | 723 "src/compiler/js-graph.cc", |
| 722 "src/compiler/js-graph.h", | 724 "src/compiler/js-graph.h", |
| 723 "src/compiler/js-inlining.cc", | 725 "src/compiler/js-inlining.cc", |
| 724 "src/compiler/js-inlining.h", | 726 "src/compiler/js-inlining.h", |
| (...skipping 1031 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1756 "src/d8-debug.cc", | 1758 "src/d8-debug.cc", |
| 1757 "src/d8-debug.h", | 1759 "src/d8-debug.h", |
| 1758 "$target_gen_dir/d8-js.cc", | 1760 "$target_gen_dir/d8-js.cc", |
| 1759 ] | 1761 ] |
| 1760 } | 1762 } |
| 1761 if (v8_enable_i18n_support) { | 1763 if (v8_enable_i18n_support) { |
| 1762 deps += [ "//third_party/icu" ] | 1764 deps += [ "//third_party/icu" ] |
| 1763 } | 1765 } |
| 1764 } | 1766 } |
| 1765 } | 1767 } |
| OLD | NEW |