| 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 628 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", |
| 642 "src/compiler/graph-reducer.h", | 642 "src/compiler/graph-reducer.h", |
| 643 "src/compiler/graph-replay.cc", | 643 "src/compiler/graph-replay.cc", |
| 644 "src/compiler/graph-replay.h", | 644 "src/compiler/graph-replay.h", |
| 645 "src/compiler/graph-visualizer.cc", | 645 "src/compiler/graph-visualizer.cc", |
| 646 "src/compiler/graph-visualizer.h", | 646 "src/compiler/graph-visualizer.h", |
| 647 "src/compiler/graph.cc", | 647 "src/compiler/graph.cc", |
| 648 "src/compiler/graph.h", | 648 "src/compiler/graph.h", |
| 649 "src/compiler/greedy-allocator.cc", |
| 650 "src/compiler/greedy-allocator.h", |
| 649 "src/compiler/instruction-codes.h", | 651 "src/compiler/instruction-codes.h", |
| 650 "src/compiler/instruction-selector-impl.h", | 652 "src/compiler/instruction-selector-impl.h", |
| 651 "src/compiler/instruction-selector.cc", | 653 "src/compiler/instruction-selector.cc", |
| 652 "src/compiler/instruction-selector.h", | 654 "src/compiler/instruction-selector.h", |
| 653 "src/compiler/instruction.cc", | 655 "src/compiler/instruction.cc", |
| 654 "src/compiler/instruction.h", | 656 "src/compiler/instruction.h", |
| 655 "src/compiler/js-builtin-reducer.cc", | 657 "src/compiler/js-builtin-reducer.cc", |
| 656 "src/compiler/js-builtin-reducer.h", | 658 "src/compiler/js-builtin-reducer.h", |
| 657 "src/compiler/js-context-specialization.cc", | 659 "src/compiler/js-context-specialization.cc", |
| 658 "src/compiler/js-context-specialization.h", | 660 "src/compiler/js-context-specialization.h", |
| (...skipping 1018 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1677 sources += [ | 1679 sources += [ |
| 1678 "src/d8-debug.cc", | 1680 "src/d8-debug.cc", |
| 1679 "$target_gen_dir/d8-js.cc", | 1681 "$target_gen_dir/d8-js.cc", |
| 1680 ] | 1682 ] |
| 1681 } | 1683 } |
| 1682 if (v8_enable_i18n_support) { | 1684 if (v8_enable_i18n_support) { |
| 1683 deps += [ "//third_party/icu" ] | 1685 deps += [ "//third_party/icu" ] |
| 1684 } | 1686 } |
| 1685 } | 1687 } |
| 1686 } | 1688 } |
| OLD | NEW |