| 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 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
| 9 | 9 |
| 10 # Because standalone V8 builds are not supported, assume this is part of a | 10 # Because standalone V8 builds are not supported, assume this is part of a |
| (...skipping 739 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 750 "src/compiler/js-builtin-reducer.cc", | 750 "src/compiler/js-builtin-reducer.cc", |
| 751 "src/compiler/js-builtin-reducer.h", | 751 "src/compiler/js-builtin-reducer.h", |
| 752 "src/compiler/js-context-relaxation.cc", | 752 "src/compiler/js-context-relaxation.cc", |
| 753 "src/compiler/js-context-relaxation.h", | 753 "src/compiler/js-context-relaxation.h", |
| 754 "src/compiler/js-context-specialization.cc", | 754 "src/compiler/js-context-specialization.cc", |
| 755 "src/compiler/js-context-specialization.h", | 755 "src/compiler/js-context-specialization.h", |
| 756 "src/compiler/js-frame-specialization.cc", | 756 "src/compiler/js-frame-specialization.cc", |
| 757 "src/compiler/js-frame-specialization.h", | 757 "src/compiler/js-frame-specialization.h", |
| 758 "src/compiler/js-generic-lowering.cc", | 758 "src/compiler/js-generic-lowering.cc", |
| 759 "src/compiler/js-generic-lowering.h", | 759 "src/compiler/js-generic-lowering.h", |
| 760 "src/compiler/js-global-specialization.cc", | |
| 761 "src/compiler/js-global-specialization.h", | |
| 762 "src/compiler/js-graph.cc", | 760 "src/compiler/js-graph.cc", |
| 763 "src/compiler/js-graph.h", | 761 "src/compiler/js-graph.h", |
| 764 "src/compiler/js-inlining.cc", | 762 "src/compiler/js-inlining.cc", |
| 765 "src/compiler/js-inlining.h", | 763 "src/compiler/js-inlining.h", |
| 766 "src/compiler/js-inlining-heuristic.cc", | 764 "src/compiler/js-inlining-heuristic.cc", |
| 767 "src/compiler/js-inlining-heuristic.h", | 765 "src/compiler/js-inlining-heuristic.h", |
| 768 "src/compiler/js-intrinsic-lowering.cc", | 766 "src/compiler/js-intrinsic-lowering.cc", |
| 769 "src/compiler/js-intrinsic-lowering.h", | 767 "src/compiler/js-intrinsic-lowering.h", |
| 768 "src/compiler/js-native-context-specialization.cc", |
| 769 "src/compiler/js-native-context-specialization.h", |
| 770 "src/compiler/js-operator.cc", | 770 "src/compiler/js-operator.cc", |
| 771 "src/compiler/js-operator.h", | 771 "src/compiler/js-operator.h", |
| 772 "src/compiler/js-type-feedback.cc", | 772 "src/compiler/js-type-feedback.cc", |
| 773 "src/compiler/js-type-feedback.h", | 773 "src/compiler/js-type-feedback.h", |
| 774 "src/compiler/js-type-feedback-lowering.cc", | 774 "src/compiler/js-type-feedback-lowering.cc", |
| 775 "src/compiler/js-type-feedback-lowering.h", | 775 "src/compiler/js-type-feedback-lowering.h", |
| 776 "src/compiler/js-typed-lowering.cc", | 776 "src/compiler/js-typed-lowering.cc", |
| 777 "src/compiler/js-typed-lowering.h", | 777 "src/compiler/js-typed-lowering.h", |
| 778 "src/compiler/jump-threading.cc", | 778 "src/compiler/jump-threading.cc", |
| 779 "src/compiler/jump-threading.h", | 779 "src/compiler/jump-threading.h", |
| (...skipping 1046 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1826 if (!is_component_build) { | 1826 if (!is_component_build) { |
| 1827 sources += [ | 1827 sources += [ |
| 1828 "$target_gen_dir/d8-js.cc", | 1828 "$target_gen_dir/d8-js.cc", |
| 1829 ] | 1829 ] |
| 1830 } | 1830 } |
| 1831 if (v8_enable_i18n_support) { | 1831 if (v8_enable_i18n_support) { |
| 1832 deps += [ "//third_party/icu" ] | 1832 deps += [ "//third_party/icu" ] |
| 1833 } | 1833 } |
| 1834 } | 1834 } |
| 1835 } | 1835 } |
| OLD | NEW |