| 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 674 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 685 "src/codegen.cc", | 685 "src/codegen.cc", |
| 686 "src/codegen.h", | 686 "src/codegen.h", |
| 687 "src/compilation-cache.cc", | 687 "src/compilation-cache.cc", |
| 688 "src/compilation-cache.h", | 688 "src/compilation-cache.h", |
| 689 "src/compilation-dependencies.cc", | 689 "src/compilation-dependencies.cc", |
| 690 "src/compilation-dependencies.h", | 690 "src/compilation-dependencies.h", |
| 691 "src/compilation-statistics.cc", | 691 "src/compilation-statistics.cc", |
| 692 "src/compilation-statistics.h", | 692 "src/compilation-statistics.h", |
| 693 "src/compiler/access-builder.cc", | 693 "src/compiler/access-builder.cc", |
| 694 "src/compiler/access-builder.h", | 694 "src/compiler/access-builder.h", |
| 695 "src/compiler/access-info.cc", |
| 696 "src/compiler/access-info.h", |
| 695 "src/compiler/all-nodes.cc", | 697 "src/compiler/all-nodes.cc", |
| 696 "src/compiler/all-nodes.h", | 698 "src/compiler/all-nodes.h", |
| 697 "src/compiler/ast-graph-builder.cc", | 699 "src/compiler/ast-graph-builder.cc", |
| 698 "src/compiler/ast-graph-builder.h", | 700 "src/compiler/ast-graph-builder.h", |
| 699 "src/compiler/ast-loop-assignment-analyzer.cc", | 701 "src/compiler/ast-loop-assignment-analyzer.cc", |
| 700 "src/compiler/ast-loop-assignment-analyzer.h", | 702 "src/compiler/ast-loop-assignment-analyzer.h", |
| 701 "src/compiler/basic-block-instrumentor.cc", | 703 "src/compiler/basic-block-instrumentor.cc", |
| 702 "src/compiler/basic-block-instrumentor.h", | 704 "src/compiler/basic-block-instrumentor.h", |
| 703 "src/compiler/branch-elimination.cc", | 705 "src/compiler/branch-elimination.cc", |
| 704 "src/compiler/branch-elimination.h", | 706 "src/compiler/branch-elimination.h", |
| (...skipping 111 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 816 "src/compiler/operator-properties.cc", | 818 "src/compiler/operator-properties.cc", |
| 817 "src/compiler/operator-properties.h", | 819 "src/compiler/operator-properties.h", |
| 818 "src/compiler/operator.cc", | 820 "src/compiler/operator.cc", |
| 819 "src/compiler/operator.h", | 821 "src/compiler/operator.h", |
| 820 "src/compiler/osr.cc", | 822 "src/compiler/osr.cc", |
| 821 "src/compiler/osr.h", | 823 "src/compiler/osr.h", |
| 822 "src/compiler/pipeline.cc", | 824 "src/compiler/pipeline.cc", |
| 823 "src/compiler/pipeline.h", | 825 "src/compiler/pipeline.h", |
| 824 "src/compiler/pipeline-statistics.cc", | 826 "src/compiler/pipeline-statistics.cc", |
| 825 "src/compiler/pipeline-statistics.h", | 827 "src/compiler/pipeline-statistics.h", |
| 826 "src/compiler/property-access-info.cc", | |
| 827 "src/compiler/property-access-info.h", | |
| 828 "src/compiler/raw-machine-assembler.cc", | 828 "src/compiler/raw-machine-assembler.cc", |
| 829 "src/compiler/raw-machine-assembler.h", | 829 "src/compiler/raw-machine-assembler.h", |
| 830 "src/compiler/register-allocator.cc", | 830 "src/compiler/register-allocator.cc", |
| 831 "src/compiler/register-allocator.h", | 831 "src/compiler/register-allocator.h", |
| 832 "src/compiler/register-allocator-verifier.cc", | 832 "src/compiler/register-allocator-verifier.cc", |
| 833 "src/compiler/register-allocator-verifier.h", | 833 "src/compiler/register-allocator-verifier.h", |
| 834 "src/compiler/representation-change.h", | 834 "src/compiler/representation-change.h", |
| 835 "src/compiler/schedule.cc", | 835 "src/compiler/schedule.cc", |
| 836 "src/compiler/schedule.h", | 836 "src/compiler/schedule.h", |
| 837 "src/compiler/scheduler.cc", | 837 "src/compiler/scheduler.cc", |
| (...skipping 1000 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1838 if (!is_component_build) { | 1838 if (!is_component_build) { |
| 1839 sources += [ | 1839 sources += [ |
| 1840 "$target_gen_dir/d8-js.cc", | 1840 "$target_gen_dir/d8-js.cc", |
| 1841 ] | 1841 ] |
| 1842 } | 1842 } |
| 1843 if (v8_enable_i18n_support) { | 1843 if (v8_enable_i18n_support) { |
| 1844 deps += [ "//third_party/icu" ] | 1844 deps += [ "//third_party/icu" ] |
| 1845 } | 1845 } |
| 1846 } | 1846 } |
| 1847 } | 1847 } |
| OLD | NEW |