| 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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 "src/compiler/access-builder.cc", | 695 "src/compiler/access-builder.cc", |
| 696 "src/compiler/access-builder.h", | 696 "src/compiler/access-builder.h", |
| 697 "src/compiler/all-nodes.cc", | 697 "src/compiler/all-nodes.cc", |
| 698 "src/compiler/all-nodes.h", | 698 "src/compiler/all-nodes.h", |
| 699 "src/compiler/ast-graph-builder.cc", | 699 "src/compiler/ast-graph-builder.cc", |
| 700 "src/compiler/ast-graph-builder.h", | 700 "src/compiler/ast-graph-builder.h", |
| 701 "src/compiler/ast-loop-assignment-analyzer.cc", | 701 "src/compiler/ast-loop-assignment-analyzer.cc", |
| 702 "src/compiler/ast-loop-assignment-analyzer.h", | 702 "src/compiler/ast-loop-assignment-analyzer.h", |
| 703 "src/compiler/basic-block-instrumentor.cc", | 703 "src/compiler/basic-block-instrumentor.cc", |
| 704 "src/compiler/basic-block-instrumentor.h", | 704 "src/compiler/basic-block-instrumentor.h", |
| 705 "src/compiler/bytecode-graph-builder.cc", |
| 706 "src/compiler/bytecode-graph-builder.h", |
| 705 "src/compiler/change-lowering.cc", | 707 "src/compiler/change-lowering.cc", |
| 706 "src/compiler/change-lowering.h", | 708 "src/compiler/change-lowering.h", |
| 707 "src/compiler/c-linkage.cc", | 709 "src/compiler/c-linkage.cc", |
| 708 "src/compiler/coalesced-live-ranges.cc", | 710 "src/compiler/coalesced-live-ranges.cc", |
| 709 "src/compiler/coalesced-live-ranges.h", | 711 "src/compiler/coalesced-live-ranges.h", |
| 710 "src/compiler/code-generator-impl.h", | 712 "src/compiler/code-generator-impl.h", |
| 711 "src/compiler/code-generator.cc", | 713 "src/compiler/code-generator.cc", |
| 712 "src/compiler/code-generator.h", | 714 "src/compiler/code-generator.h", |
| 713 "src/compiler/common-node-cache.cc", | 715 "src/compiler/common-node-cache.cc", |
| 714 "src/compiler/common-node-cache.h", | 716 "src/compiler/common-node-cache.h", |
| (...skipping 1106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1821 if (!is_component_build) { | 1823 if (!is_component_build) { |
| 1822 sources += [ | 1824 sources += [ |
| 1823 "$target_gen_dir/d8-js.cc", | 1825 "$target_gen_dir/d8-js.cc", |
| 1824 ] | 1826 ] |
| 1825 } | 1827 } |
| 1826 if (v8_enable_i18n_support) { | 1828 if (v8_enable_i18n_support) { |
| 1827 deps += [ "//third_party/icu" ] | 1829 deps += [ "//third_party/icu" ] |
| 1828 } | 1830 } |
| 1829 } | 1831 } |
| 1830 } | 1832 } |
| OLD | NEW |