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 749 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
760 "src/compiler/js-builtin-reducer.cc", | 760 "src/compiler/js-builtin-reducer.cc", |
761 "src/compiler/js-builtin-reducer.h", | 761 "src/compiler/js-builtin-reducer.h", |
762 "src/compiler/js-context-relaxation.cc", | 762 "src/compiler/js-context-relaxation.cc", |
763 "src/compiler/js-context-relaxation.h", | 763 "src/compiler/js-context-relaxation.h", |
764 "src/compiler/js-context-specialization.cc", | 764 "src/compiler/js-context-specialization.cc", |
765 "src/compiler/js-context-specialization.h", | 765 "src/compiler/js-context-specialization.h", |
766 "src/compiler/js-frame-specialization.cc", | 766 "src/compiler/js-frame-specialization.cc", |
767 "src/compiler/js-frame-specialization.h", | 767 "src/compiler/js-frame-specialization.h", |
768 "src/compiler/js-generic-lowering.cc", | 768 "src/compiler/js-generic-lowering.cc", |
769 "src/compiler/js-generic-lowering.h", | 769 "src/compiler/js-generic-lowering.h", |
| 770 "src/compiler/js-global-object-specialization.cc", |
| 771 "src/compiler/js-global-object-specialization.h", |
770 "src/compiler/js-graph.cc", | 772 "src/compiler/js-graph.cc", |
771 "src/compiler/js-graph.h", | 773 "src/compiler/js-graph.h", |
772 "src/compiler/js-inlining.cc", | 774 "src/compiler/js-inlining.cc", |
773 "src/compiler/js-inlining.h", | 775 "src/compiler/js-inlining.h", |
774 "src/compiler/js-inlining-heuristic.cc", | 776 "src/compiler/js-inlining-heuristic.cc", |
775 "src/compiler/js-inlining-heuristic.h", | 777 "src/compiler/js-inlining-heuristic.h", |
776 "src/compiler/js-intrinsic-lowering.cc", | 778 "src/compiler/js-intrinsic-lowering.cc", |
777 "src/compiler/js-intrinsic-lowering.h", | 779 "src/compiler/js-intrinsic-lowering.h", |
778 "src/compiler/js-native-context-specialization.cc", | 780 "src/compiler/js-native-context-specialization.cc", |
779 "src/compiler/js-native-context-specialization.h", | 781 "src/compiler/js-native-context-specialization.h", |
(...skipping 1058 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1838 if (!is_component_build) { | 1840 if (!is_component_build) { |
1839 sources += [ | 1841 sources += [ |
1840 "$target_gen_dir/d8-js.cc", | 1842 "$target_gen_dir/d8-js.cc", |
1841 ] | 1843 ] |
1842 } | 1844 } |
1843 if (v8_enable_i18n_support) { | 1845 if (v8_enable_i18n_support) { |
1844 deps += [ "//third_party/icu" ] | 1846 deps += [ "//third_party/icu" ] |
1845 } | 1847 } |
1846 } | 1848 } |
1847 } | 1849 } |
OLD | NEW |