| 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 759 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 770 "src/compiler/js-inlining.cc", | 770 "src/compiler/js-inlining.cc", |
| 771 "src/compiler/js-inlining.h", | 771 "src/compiler/js-inlining.h", |
| 772 "src/compiler/js-inlining-heuristic.cc", | 772 "src/compiler/js-inlining-heuristic.cc", |
| 773 "src/compiler/js-inlining-heuristic.h", | 773 "src/compiler/js-inlining-heuristic.h", |
| 774 "src/compiler/js-intrinsic-lowering.cc", | 774 "src/compiler/js-intrinsic-lowering.cc", |
| 775 "src/compiler/js-intrinsic-lowering.h", | 775 "src/compiler/js-intrinsic-lowering.h", |
| 776 "src/compiler/js-native-context-specialization.cc", | 776 "src/compiler/js-native-context-specialization.cc", |
| 777 "src/compiler/js-native-context-specialization.h", | 777 "src/compiler/js-native-context-specialization.h", |
| 778 "src/compiler/js-operator.cc", | 778 "src/compiler/js-operator.cc", |
| 779 "src/compiler/js-operator.h", | 779 "src/compiler/js-operator.h", |
| 780 "src/compiler/js-type-feedback.cc", | |
| 781 "src/compiler/js-type-feedback.h", | |
| 782 "src/compiler/js-type-feedback-lowering.cc", | |
| 783 "src/compiler/js-type-feedback-lowering.h", | |
| 784 "src/compiler/js-typed-lowering.cc", | 780 "src/compiler/js-typed-lowering.cc", |
| 785 "src/compiler/js-typed-lowering.h", | 781 "src/compiler/js-typed-lowering.h", |
| 786 "src/compiler/jump-threading.cc", | 782 "src/compiler/jump-threading.cc", |
| 787 "src/compiler/jump-threading.h", | 783 "src/compiler/jump-threading.h", |
| 788 "src/compiler/linkage.cc", | 784 "src/compiler/linkage.cc", |
| 789 "src/compiler/linkage.h", | 785 "src/compiler/linkage.h", |
| 790 "src/compiler/live-range-separator.cc", | 786 "src/compiler/live-range-separator.cc", |
| 791 "src/compiler/live-range-separator.h", | 787 "src/compiler/live-range-separator.h", |
| 792 "src/compiler/liveness-analyzer.cc", | 788 "src/compiler/liveness-analyzer.cc", |
| 793 "src/compiler/liveness-analyzer.h", | 789 "src/compiler/liveness-analyzer.h", |
| (...skipping 1045 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1839 if (!is_component_build) { | 1835 if (!is_component_build) { |
| 1840 sources += [ | 1836 sources += [ |
| 1841 "$target_gen_dir/d8-js.cc", | 1837 "$target_gen_dir/d8-js.cc", |
| 1842 ] | 1838 ] |
| 1843 } | 1839 } |
| 1844 if (v8_enable_i18n_support) { | 1840 if (v8_enable_i18n_support) { |
| 1845 deps += [ "//third_party/icu" ] | 1841 deps += [ "//third_party/icu" ] |
| 1846 } | 1842 } |
| 1847 } | 1843 } |
| 1848 } | 1844 } |
| OLD | NEW |