| 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 684 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 695 "src/compiler/access-info.cc", | 695 "src/compiler/access-info.cc", |
| 696 "src/compiler/access-info.h", | 696 "src/compiler/access-info.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/binary-operator-reducer.cc", |
| 706 "src/compiler/binary-operator-reducer.h", |
| 705 "src/compiler/branch-elimination.cc", | 707 "src/compiler/branch-elimination.cc", |
| 706 "src/compiler/branch-elimination.h", | 708 "src/compiler/branch-elimination.h", |
| 707 "src/compiler/bytecode-graph-builder.cc", | 709 "src/compiler/bytecode-graph-builder.cc", |
| 708 "src/compiler/bytecode-graph-builder.h", | 710 "src/compiler/bytecode-graph-builder.h", |
| 709 "src/compiler/change-lowering.cc", | 711 "src/compiler/change-lowering.cc", |
| 710 "src/compiler/change-lowering.h", | 712 "src/compiler/change-lowering.h", |
| 711 "src/compiler/c-linkage.cc", | 713 "src/compiler/c-linkage.cc", |
| 712 "src/compiler/coalesced-live-ranges.cc", | 714 "src/compiler/coalesced-live-ranges.cc", |
| 713 "src/compiler/coalesced-live-ranges.h", | 715 "src/compiler/coalesced-live-ranges.h", |
| 714 "src/compiler/code-generator-impl.h", | 716 "src/compiler/code-generator-impl.h", |
| (...skipping 1125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1840 if (!is_component_build) { | 1842 if (!is_component_build) { |
| 1841 sources += [ | 1843 sources += [ |
| 1842 "$target_gen_dir/d8-js.cc", | 1844 "$target_gen_dir/d8-js.cc", |
| 1843 ] | 1845 ] |
| 1844 } | 1846 } |
| 1845 if (v8_enable_i18n_support) { | 1847 if (v8_enable_i18n_support) { |
| 1846 deps += [ "//third_party/icu" ] | 1848 deps += [ "//third_party/icu" ] |
| 1847 } | 1849 } |
| 1848 } | 1850 } |
| 1849 } | 1851 } |
| OLD | NEW |