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 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
586 "src/compiler/js-generic-lowering.cc", | 586 "src/compiler/js-generic-lowering.cc", |
587 "src/compiler/js-generic-lowering.h", | 587 "src/compiler/js-generic-lowering.h", |
588 "src/compiler/js-graph.cc", | 588 "src/compiler/js-graph.cc", |
589 "src/compiler/js-graph.h", | 589 "src/compiler/js-graph.h", |
590 "src/compiler/js-inlining.cc", | 590 "src/compiler/js-inlining.cc", |
591 "src/compiler/js-inlining.h", | 591 "src/compiler/js-inlining.h", |
592 "src/compiler/js-intrinsic-lowering.cc", | 592 "src/compiler/js-intrinsic-lowering.cc", |
593 "src/compiler/js-intrinsic-lowering.h", | 593 "src/compiler/js-intrinsic-lowering.h", |
594 "src/compiler/js-operator.cc", | 594 "src/compiler/js-operator.cc", |
595 "src/compiler/js-operator.h", | 595 "src/compiler/js-operator.h", |
| 596 "src/compiler/js-type-feedback.cc", |
| 597 "src/compiler/js-type-feedback.h", |
596 "src/compiler/js-typed-lowering.cc", | 598 "src/compiler/js-typed-lowering.cc", |
597 "src/compiler/js-typed-lowering.h", | 599 "src/compiler/js-typed-lowering.h", |
598 "src/compiler/jump-threading.cc", | 600 "src/compiler/jump-threading.cc", |
599 "src/compiler/jump-threading.h", | 601 "src/compiler/jump-threading.h", |
600 "src/compiler/linkage-impl.h", | 602 "src/compiler/linkage-impl.h", |
601 "src/compiler/linkage.cc", | 603 "src/compiler/linkage.cc", |
602 "src/compiler/linkage.h", | 604 "src/compiler/linkage.h", |
603 "src/compiler/liveness-analyzer.cc", | 605 "src/compiler/liveness-analyzer.cc", |
604 "src/compiler/liveness-analyzer.h", | 606 "src/compiler/liveness-analyzer.h", |
605 "src/compiler/load-elimination.cc", | 607 "src/compiler/load-elimination.cc", |
(...skipping 984 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1590 sources += [ | 1592 sources += [ |
1591 "src/d8-debug.cc", | 1593 "src/d8-debug.cc", |
1592 "$target_gen_dir/d8-js.cc", | 1594 "$target_gen_dir/d8-js.cc", |
1593 ] | 1595 ] |
1594 } | 1596 } |
1595 if (v8_enable_i18n_support) { | 1597 if (v8_enable_i18n_support) { |
1596 deps += [ "//third_party/icu" ] | 1598 deps += [ "//third_party/icu" ] |
1597 } | 1599 } |
1598 } | 1600 } |
1599 } | 1601 } |
OLD | NEW |