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 | 8 |
9 # Because standalone V8 builds are not supported, assume this is part of a | 9 # Because standalone V8 builds are not supported, assume this is part of a |
10 # Chromium build. | 10 # Chromium build. |
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
660 "src/compiler/all-nodes.cc", | 660 "src/compiler/all-nodes.cc", |
661 "src/compiler/all-nodes.h", | 661 "src/compiler/all-nodes.h", |
662 "src/compiler/ast-graph-builder.cc", | 662 "src/compiler/ast-graph-builder.cc", |
663 "src/compiler/ast-graph-builder.h", | 663 "src/compiler/ast-graph-builder.h", |
664 "src/compiler/ast-loop-assignment-analyzer.cc", | 664 "src/compiler/ast-loop-assignment-analyzer.cc", |
665 "src/compiler/ast-loop-assignment-analyzer.h", | 665 "src/compiler/ast-loop-assignment-analyzer.h", |
666 "src/compiler/basic-block-instrumentor.cc", | 666 "src/compiler/basic-block-instrumentor.cc", |
667 "src/compiler/basic-block-instrumentor.h", | 667 "src/compiler/basic-block-instrumentor.h", |
668 "src/compiler/change-lowering.cc", | 668 "src/compiler/change-lowering.cc", |
669 "src/compiler/change-lowering.h", | 669 "src/compiler/change-lowering.h", |
| 670 "src/compiler/c-linkage.cc", |
670 "src/compiler/coalesced-live-ranges.cc", | 671 "src/compiler/coalesced-live-ranges.cc", |
671 "src/compiler/coalesced-live-ranges.h", | 672 "src/compiler/coalesced-live-ranges.h", |
672 "src/compiler/code-generator-impl.h", | 673 "src/compiler/code-generator-impl.h", |
673 "src/compiler/code-generator.cc", | 674 "src/compiler/code-generator.cc", |
674 "src/compiler/code-generator.h", | 675 "src/compiler/code-generator.h", |
675 "src/compiler/common-node-cache.cc", | 676 "src/compiler/common-node-cache.cc", |
676 "src/compiler/common-node-cache.h", | 677 "src/compiler/common-node-cache.h", |
677 "src/compiler/common-operator-reducer.cc", | 678 "src/compiler/common-operator-reducer.cc", |
678 "src/compiler/common-operator-reducer.h", | 679 "src/compiler/common-operator-reducer.h", |
679 "src/compiler/common-operator.cc", | 680 "src/compiler/common-operator.cc", |
(...skipping 1088 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1768 if (!is_component_build) { | 1769 if (!is_component_build) { |
1769 sources += [ | 1770 sources += [ |
1770 "$target_gen_dir/d8-js.cc", | 1771 "$target_gen_dir/d8-js.cc", |
1771 ] | 1772 ] |
1772 } | 1773 } |
1773 if (v8_enable_i18n_support) { | 1774 if (v8_enable_i18n_support) { |
1774 deps += [ "//third_party/icu" ] | 1775 deps += [ "//third_party/icu" ] |
1775 } | 1776 } |
1776 } | 1777 } |
1777 } | 1778 } |
OLD | NEW |