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 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1060 "src/ic/stub-cache.cc", | 1062 "src/ic/stub-cache.cc", |
1061 "src/ic/stub-cache.h", | 1063 "src/ic/stub-cache.h", |
1062 "src/identity-map.cc", | 1064 "src/identity-map.cc", |
1063 "src/identity-map.h", | 1065 "src/identity-map.h", |
1064 "src/interface-descriptors.cc", | 1066 "src/interface-descriptors.cc", |
1065 "src/interface-descriptors.h", | 1067 "src/interface-descriptors.h", |
1066 "src/interpreter/bytecodes.cc", | 1068 "src/interpreter/bytecodes.cc", |
1067 "src/interpreter/bytecodes.h", | 1069 "src/interpreter/bytecodes.h", |
1068 "src/interpreter/bytecode-array-builder.cc", | 1070 "src/interpreter/bytecode-array-builder.cc", |
1069 "src/interpreter/bytecode-array-builder.h", | 1071 "src/interpreter/bytecode-array-builder.h", |
| 1072 "src/interpreter/bytecode-array-iterator.cc", |
| 1073 "src/interpreter/bytecode-array-iterator.h", |
1070 "src/interpreter/bytecode-generator.cc", | 1074 "src/interpreter/bytecode-generator.cc", |
1071 "src/interpreter/bytecode-generator.h", | 1075 "src/interpreter/bytecode-generator.h", |
1072 "src/interpreter/interpreter.cc", | 1076 "src/interpreter/interpreter.cc", |
1073 "src/interpreter/interpreter.h", | 1077 "src/interpreter/interpreter.h", |
1074 "src/isolate-inl.h", | 1078 "src/isolate-inl.h", |
1075 "src/isolate.cc", | 1079 "src/isolate.cc", |
1076 "src/isolate.h", | 1080 "src/isolate.h", |
1077 "src/json-parser.h", | 1081 "src/json-parser.h", |
1078 "src/json-stringifier.h", | 1082 "src/json-stringifier.h", |
1079 "src/layout-descriptor-inl.h", | 1083 "src/layout-descriptor-inl.h", |
(...skipping 766 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1846 if (!is_component_build) { | 1850 if (!is_component_build) { |
1847 sources += [ | 1851 sources += [ |
1848 "$target_gen_dir/d8-js.cc", | 1852 "$target_gen_dir/d8-js.cc", |
1849 ] | 1853 ] |
1850 } | 1854 } |
1851 if (v8_enable_i18n_support) { | 1855 if (v8_enable_i18n_support) { |
1852 deps += [ "//third_party/icu" ] | 1856 deps += [ "//third_party/icu" ] |
1853 } | 1857 } |
1854 } | 1858 } |
1855 } | 1859 } |
OLD | NEW |