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 605 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
616 "src/compiler/control-equivalence.cc", | 616 "src/compiler/control-equivalence.cc", |
617 "src/compiler/control-equivalence.h", | 617 "src/compiler/control-equivalence.h", |
618 "src/compiler/control-flow-optimizer.cc", | 618 "src/compiler/control-flow-optimizer.cc", |
619 "src/compiler/control-flow-optimizer.h", | 619 "src/compiler/control-flow-optimizer.h", |
620 "src/compiler/control-reducer.cc", | 620 "src/compiler/control-reducer.cc", |
621 "src/compiler/control-reducer.h", | 621 "src/compiler/control-reducer.h", |
622 "src/compiler/diamond.h", | 622 "src/compiler/diamond.h", |
623 "src/compiler/frame.h", | 623 "src/compiler/frame.h", |
624 "src/compiler/frame-elider.cc", | 624 "src/compiler/frame-elider.cc", |
625 "src/compiler/frame-elider.h", | 625 "src/compiler/frame-elider.h", |
| 626 "src/compiler/frame-states.cc", |
| 627 "src/compiler/frame-states.h", |
626 "src/compiler/gap-resolver.cc", | 628 "src/compiler/gap-resolver.cc", |
627 "src/compiler/gap-resolver.h", | 629 "src/compiler/gap-resolver.h", |
628 "src/compiler/graph-builder.h", | 630 "src/compiler/graph-builder.h", |
629 "src/compiler/graph-reducer.cc", | 631 "src/compiler/graph-reducer.cc", |
630 "src/compiler/graph-reducer.h", | 632 "src/compiler/graph-reducer.h", |
631 "src/compiler/graph-replay.cc", | 633 "src/compiler/graph-replay.cc", |
632 "src/compiler/graph-replay.h", | 634 "src/compiler/graph-replay.h", |
633 "src/compiler/graph-visualizer.cc", | 635 "src/compiler/graph-visualizer.cc", |
634 "src/compiler/graph-visualizer.h", | 636 "src/compiler/graph-visualizer.h", |
635 "src/compiler/graph.cc", | 637 "src/compiler/graph.cc", |
(...skipping 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1659 sources += [ | 1661 sources += [ |
1660 "src/d8-debug.cc", | 1662 "src/d8-debug.cc", |
1661 "$target_gen_dir/d8-js.cc", | 1663 "$target_gen_dir/d8-js.cc", |
1662 ] | 1664 ] |
1663 } | 1665 } |
1664 if (v8_enable_i18n_support) { | 1666 if (v8_enable_i18n_support) { |
1665 deps += [ "//third_party/icu" ] | 1667 deps += [ "//third_party/icu" ] |
1666 } | 1668 } |
1667 } | 1669 } |
1668 } | 1670 } |
OLD | NEW |