| 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 660 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 671 "src/compiler/simplified-lowering.cc", | 671 "src/compiler/simplified-lowering.cc", |
| 672 "src/compiler/simplified-lowering.h", | 672 "src/compiler/simplified-lowering.h", |
| 673 "src/compiler/simplified-operator-reducer.cc", | 673 "src/compiler/simplified-operator-reducer.cc", |
| 674 "src/compiler/simplified-operator-reducer.h", | 674 "src/compiler/simplified-operator-reducer.h", |
| 675 "src/compiler/simplified-operator.cc", | 675 "src/compiler/simplified-operator.cc", |
| 676 "src/compiler/simplified-operator.h", | 676 "src/compiler/simplified-operator.h", |
| 677 "src/compiler/source-position.cc", | 677 "src/compiler/source-position.cc", |
| 678 "src/compiler/source-position.h", | 678 "src/compiler/source-position.h", |
| 679 "src/compiler/state-values-utils.cc", | 679 "src/compiler/state-values-utils.cc", |
| 680 "src/compiler/state-values-utils.h", | 680 "src/compiler/state-values-utils.h", |
| 681 "src/compiler/tail-call-optimization.cc", |
| 682 "src/compiler/tail-call-optimization.h", |
| 681 "src/compiler/typer.cc", | 683 "src/compiler/typer.cc", |
| 682 "src/compiler/typer.h", | 684 "src/compiler/typer.h", |
| 683 "src/compiler/value-numbering-reducer.cc", | 685 "src/compiler/value-numbering-reducer.cc", |
| 684 "src/compiler/value-numbering-reducer.h", | 686 "src/compiler/value-numbering-reducer.h", |
| 685 "src/compiler/verifier.cc", | 687 "src/compiler/verifier.cc", |
| 686 "src/compiler/verifier.h", | 688 "src/compiler/verifier.h", |
| 687 "src/compiler/zone-pool.cc", | 689 "src/compiler/zone-pool.cc", |
| 688 "src/compiler/zone-pool.h", | 690 "src/compiler/zone-pool.h", |
| 689 "src/compiler.cc", | 691 "src/compiler.cc", |
| 690 "src/compiler.h", | 692 "src/compiler.h", |
| (...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1607 sources += [ | 1609 sources += [ |
| 1608 "src/d8-debug.cc", | 1610 "src/d8-debug.cc", |
| 1609 "$target_gen_dir/d8-js.cc", | 1611 "$target_gen_dir/d8-js.cc", |
| 1610 ] | 1612 ] |
| 1611 } | 1613 } |
| 1612 if (v8_enable_i18n_support) { | 1614 if (v8_enable_i18n_support) { |
| 1613 deps += [ "//third_party/icu" ] | 1615 deps += [ "//third_party/icu" ] |
| 1614 } | 1616 } |
| 1615 } | 1617 } |
| 1616 } | 1618 } |
| OLD | NEW |