| 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 609 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 620 "src/compiler/common-operator-reducer.cc", | 620 "src/compiler/common-operator-reducer.cc", |
| 621 "src/compiler/common-operator-reducer.h", | 621 "src/compiler/common-operator-reducer.h", |
| 622 "src/compiler/common-operator.cc", | 622 "src/compiler/common-operator.cc", |
| 623 "src/compiler/common-operator.h", | 623 "src/compiler/common-operator.h", |
| 624 "src/compiler/control-builders.cc", | 624 "src/compiler/control-builders.cc", |
| 625 "src/compiler/control-builders.h", | 625 "src/compiler/control-builders.h", |
| 626 "src/compiler/control-equivalence.cc", | 626 "src/compiler/control-equivalence.cc", |
| 627 "src/compiler/control-equivalence.h", | 627 "src/compiler/control-equivalence.h", |
| 628 "src/compiler/control-flow-optimizer.cc", | 628 "src/compiler/control-flow-optimizer.cc", |
| 629 "src/compiler/control-flow-optimizer.h", | 629 "src/compiler/control-flow-optimizer.h", |
| 630 "src/compiler/control-reducer.cc", | 630 "src/compiler/dead-code-elimination.cc", |
| 631 "src/compiler/control-reducer.h", | 631 "src/compiler/dead-code-elimination.h", |
| 632 "src/compiler/diamond.h", | 632 "src/compiler/diamond.h", |
| 633 "src/compiler/frame.h", | 633 "src/compiler/frame.h", |
| 634 "src/compiler/frame-elider.cc", | 634 "src/compiler/frame-elider.cc", |
| 635 "src/compiler/frame-elider.h", | 635 "src/compiler/frame-elider.h", |
| 636 "src/compiler/frame-states.cc", | 636 "src/compiler/frame-states.cc", |
| 637 "src/compiler/frame-states.h", | 637 "src/compiler/frame-states.h", |
| 638 "src/compiler/gap-resolver.cc", | 638 "src/compiler/gap-resolver.cc", |
| 639 "src/compiler/gap-resolver.h", | 639 "src/compiler/gap-resolver.h", |
| 640 "src/compiler/graph-builder.h", | 640 "src/compiler/graph-builder.h", |
| 641 "src/compiler/graph-reducer.cc", | 641 "src/compiler/graph-reducer.cc", |
| (...skipping 1039 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1681 sources += [ | 1681 sources += [ |
| 1682 "src/d8-debug.cc", | 1682 "src/d8-debug.cc", |
| 1683 "$target_gen_dir/d8-js.cc", | 1683 "$target_gen_dir/d8-js.cc", |
| 1684 ] | 1684 ] |
| 1685 } | 1685 } |
| 1686 if (v8_enable_i18n_support) { | 1686 if (v8_enable_i18n_support) { |
| 1687 deps += [ "//third_party/icu" ] | 1687 deps += [ "//third_party/icu" ] |
| 1688 } | 1688 } |
| 1689 } | 1689 } |
| 1690 } | 1690 } |
| OLD | NEW |