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 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
706 "src/compiler/access-builder.cc", | 706 "src/compiler/access-builder.cc", |
707 "src/compiler/access-builder.h", | 707 "src/compiler/access-builder.h", |
708 "src/compiler/all-nodes.cc", | 708 "src/compiler/all-nodes.cc", |
709 "src/compiler/all-nodes.h", | 709 "src/compiler/all-nodes.h", |
710 "src/compiler/ast-graph-builder.cc", | 710 "src/compiler/ast-graph-builder.cc", |
711 "src/compiler/ast-graph-builder.h", | 711 "src/compiler/ast-graph-builder.h", |
712 "src/compiler/ast-loop-assignment-analyzer.cc", | 712 "src/compiler/ast-loop-assignment-analyzer.cc", |
713 "src/compiler/ast-loop-assignment-analyzer.h", | 713 "src/compiler/ast-loop-assignment-analyzer.h", |
714 "src/compiler/basic-block-instrumentor.cc", | 714 "src/compiler/basic-block-instrumentor.cc", |
715 "src/compiler/basic-block-instrumentor.h", | 715 "src/compiler/basic-block-instrumentor.h", |
| 716 "src/compiler/bytecode-graph-builder.cc", |
| 717 "src/compiler/bytecode-graph-builder.h", |
716 "src/compiler/change-lowering.cc", | 718 "src/compiler/change-lowering.cc", |
717 "src/compiler/change-lowering.h", | 719 "src/compiler/change-lowering.h", |
718 "src/compiler/c-linkage.cc", | 720 "src/compiler/c-linkage.cc", |
719 "src/compiler/coalesced-live-ranges.cc", | 721 "src/compiler/coalesced-live-ranges.cc", |
720 "src/compiler/coalesced-live-ranges.h", | 722 "src/compiler/coalesced-live-ranges.h", |
721 "src/compiler/code-generator-impl.h", | 723 "src/compiler/code-generator-impl.h", |
722 "src/compiler/code-generator.cc", | 724 "src/compiler/code-generator.cc", |
723 "src/compiler/code-generator.h", | 725 "src/compiler/code-generator.h", |
724 "src/compiler/common-node-cache.cc", | 726 "src/compiler/common-node-cache.cc", |
725 "src/compiler/common-node-cache.h", | 727 "src/compiler/common-node-cache.h", |
(...skipping 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1845 if (!is_component_build) { | 1847 if (!is_component_build) { |
1846 sources += [ | 1848 sources += [ |
1847 "$target_gen_dir/d8-js.cc", | 1849 "$target_gen_dir/d8-js.cc", |
1848 ] | 1850 ] |
1849 } | 1851 } |
1850 if (v8_enable_i18n_support) { | 1852 if (v8_enable_i18n_support) { |
1851 deps += [ "//third_party/icu" ] | 1853 deps += [ "//third_party/icu" ] |
1852 } | 1854 } |
1853 } | 1855 } |
1854 } | 1856 } |
OLD | NEW |