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 737 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
748 "src/compiler/js-builtin-reducer.cc", | 748 "src/compiler/js-builtin-reducer.cc", |
749 "src/compiler/js-builtin-reducer.h", | 749 "src/compiler/js-builtin-reducer.h", |
750 "src/compiler/js-context-relaxation.cc", | 750 "src/compiler/js-context-relaxation.cc", |
751 "src/compiler/js-context-relaxation.h", | 751 "src/compiler/js-context-relaxation.h", |
752 "src/compiler/js-context-specialization.cc", | 752 "src/compiler/js-context-specialization.cc", |
753 "src/compiler/js-context-specialization.h", | 753 "src/compiler/js-context-specialization.h", |
754 "src/compiler/js-frame-specialization.cc", | 754 "src/compiler/js-frame-specialization.cc", |
755 "src/compiler/js-frame-specialization.h", | 755 "src/compiler/js-frame-specialization.h", |
756 "src/compiler/js-generic-lowering.cc", | 756 "src/compiler/js-generic-lowering.cc", |
757 "src/compiler/js-generic-lowering.h", | 757 "src/compiler/js-generic-lowering.h", |
758 "src/compiler/js-global-specialization.cc", | |
759 "src/compiler/js-global-specialization.h", | |
760 "src/compiler/js-graph.cc", | 758 "src/compiler/js-graph.cc", |
761 "src/compiler/js-graph.h", | 759 "src/compiler/js-graph.h", |
762 "src/compiler/js-inlining.cc", | 760 "src/compiler/js-inlining.cc", |
763 "src/compiler/js-inlining.h", | 761 "src/compiler/js-inlining.h", |
764 "src/compiler/js-intrinsic-lowering.cc", | 762 "src/compiler/js-intrinsic-lowering.cc", |
765 "src/compiler/js-intrinsic-lowering.h", | 763 "src/compiler/js-intrinsic-lowering.h", |
766 "src/compiler/js-operator.cc", | 764 "src/compiler/js-operator.cc", |
767 "src/compiler/js-operator.h", | 765 "src/compiler/js-operator.h", |
768 "src/compiler/js-type-feedback.cc", | 766 "src/compiler/js-type-feedback.cc", |
769 "src/compiler/js-type-feedback.h", | 767 "src/compiler/js-type-feedback.h", |
(...skipping 1050 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1820 if (!is_component_build) { | 1818 if (!is_component_build) { |
1821 sources += [ | 1819 sources += [ |
1822 "$target_gen_dir/d8-js.cc", | 1820 "$target_gen_dir/d8-js.cc", |
1823 ] | 1821 ] |
1824 } | 1822 } |
1825 if (v8_enable_i18n_support) { | 1823 if (v8_enable_i18n_support) { |
1826 deps += [ "//third_party/icu" ] | 1824 deps += [ "//third_party/icu" ] |
1827 } | 1825 } |
1828 } | 1826 } |
1829 } | 1827 } |
OLD | NEW |