Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(61)

Side by Side Diff: BUILD.gn

Issue 1188433010: [turbofan] Move graph trimming functionality to dedicated GraphTrimmer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/compiler/control-reducer.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | src/compiler/control-reducer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698