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 637 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
648 "src/compiler/select-lowering.cc", | 648 "src/compiler/select-lowering.cc", |
649 "src/compiler/select-lowering.h", | 649 "src/compiler/select-lowering.h", |
650 "src/compiler/simplified-lowering.cc", | 650 "src/compiler/simplified-lowering.cc", |
651 "src/compiler/simplified-lowering.h", | 651 "src/compiler/simplified-lowering.h", |
652 "src/compiler/simplified-operator-reducer.cc", | 652 "src/compiler/simplified-operator-reducer.cc", |
653 "src/compiler/simplified-operator-reducer.h", | 653 "src/compiler/simplified-operator-reducer.h", |
654 "src/compiler/simplified-operator.cc", | 654 "src/compiler/simplified-operator.cc", |
655 "src/compiler/simplified-operator.h", | 655 "src/compiler/simplified-operator.h", |
656 "src/compiler/source-position.cc", | 656 "src/compiler/source-position.cc", |
657 "src/compiler/source-position.h", | 657 "src/compiler/source-position.h", |
| 658 "src/compiler/state-values-utils.cc", |
| 659 "src/compiler/state-values-utils.h", |
658 "src/compiler/typer.cc", | 660 "src/compiler/typer.cc", |
659 "src/compiler/typer.h", | 661 "src/compiler/typer.h", |
660 "src/compiler/value-numbering-reducer.cc", | 662 "src/compiler/value-numbering-reducer.cc", |
661 "src/compiler/value-numbering-reducer.h", | 663 "src/compiler/value-numbering-reducer.h", |
662 "src/compiler/verifier.cc", | 664 "src/compiler/verifier.cc", |
663 "src/compiler/verifier.h", | 665 "src/compiler/verifier.h", |
664 "src/compiler/zone-pool.cc", | 666 "src/compiler/zone-pool.cc", |
665 "src/compiler/zone-pool.h", | 667 "src/compiler/zone-pool.h", |
666 "src/compiler.cc", | 668 "src/compiler.cc", |
667 "src/compiler.h", | 669 "src/compiler.h", |
(...skipping 914 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1582 sources += [ | 1584 sources += [ |
1583 "src/d8-debug.cc", | 1585 "src/d8-debug.cc", |
1584 "$target_gen_dir/d8-js.cc", | 1586 "$target_gen_dir/d8-js.cc", |
1585 ] | 1587 ] |
1586 } | 1588 } |
1587 if (v8_enable_i18n_support) { | 1589 if (v8_enable_i18n_support) { |
1588 deps += [ "//third_party/icu" ] | 1590 deps += [ "//third_party/icu" ] |
1589 } | 1591 } |
1590 } | 1592 } |
1591 } | 1593 } |
OLD | NEW |