| 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 624 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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", |
| 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-trimmer.cc", |
| 646 "src/compiler/graph-trimmer.h", |
| 645 "src/compiler/graph-visualizer.cc", | 647 "src/compiler/graph-visualizer.cc", |
| 646 "src/compiler/graph-visualizer.h", | 648 "src/compiler/graph-visualizer.h", |
| 647 "src/compiler/graph.cc", | 649 "src/compiler/graph.cc", |
| 648 "src/compiler/graph.h", | 650 "src/compiler/graph.h", |
| 649 "src/compiler/greedy-allocator.cc", | 651 "src/compiler/greedy-allocator.cc", |
| 650 "src/compiler/greedy-allocator.h", | 652 "src/compiler/greedy-allocator.h", |
| 651 "src/compiler/instruction-codes.h", | 653 "src/compiler/instruction-codes.h", |
| 652 "src/compiler/instruction-selector-impl.h", | 654 "src/compiler/instruction-selector-impl.h", |
| 653 "src/compiler/instruction-selector.cc", | 655 "src/compiler/instruction-selector.cc", |
| 654 "src/compiler/instruction-selector.h", | 656 "src/compiler/instruction-selector.h", |
| (...skipping 1024 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1679 sources += [ | 1681 sources += [ |
| 1680 "src/d8-debug.cc", | 1682 "src/d8-debug.cc", |
| 1681 "$target_gen_dir/d8-js.cc", | 1683 "$target_gen_dir/d8-js.cc", |
| 1682 ] | 1684 ] |
| 1683 } | 1685 } |
| 1684 if (v8_enable_i18n_support) { | 1686 if (v8_enable_i18n_support) { |
| 1685 deps += [ "//third_party/icu" ] | 1687 deps += [ "//third_party/icu" ] |
| 1686 } | 1688 } |
| 1687 } | 1689 } |
| 1688 } | 1690 } |
| OLD | NEW |