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

Side by Side Diff: BUILD.gn

Issue 1875583003: Separate CodeAssembler and CodeStubAssembler (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix gn build Created 4 years, 8 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/DEPS » ('j') | src/compiler/code-assembler.h » ('J')
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 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after
733 "src/cached-powers.cc", 733 "src/cached-powers.cc",
734 "src/cached-powers.h", 734 "src/cached-powers.h",
735 "src/cancelable-task.cc", 735 "src/cancelable-task.cc",
736 "src/cancelable-task.h", 736 "src/cancelable-task.h",
737 "src/char-predicates-inl.h", 737 "src/char-predicates-inl.h",
738 "src/char-predicates.cc", 738 "src/char-predicates.cc",
739 "src/char-predicates.h", 739 "src/char-predicates.h",
740 "src/checks.h", 740 "src/checks.h",
741 "src/code-factory.cc", 741 "src/code-factory.cc",
742 "src/code-factory.h", 742 "src/code-factory.h",
743 "src/code-stub-assembler.cc",
744 "src/code-stub-assembler.h",
743 "src/code-stubs-hydrogen.cc", 745 "src/code-stubs-hydrogen.cc",
744 "src/code-stubs.cc", 746 "src/code-stubs.cc",
745 "src/code-stubs.h", 747 "src/code-stubs.h",
746 "src/codegen.cc", 748 "src/codegen.cc",
747 "src/codegen.h", 749 "src/codegen.h",
748 "src/collector.h", 750 "src/collector.h",
749 "src/compilation-cache.cc", 751 "src/compilation-cache.cc",
750 "src/compilation-cache.h", 752 "src/compilation-cache.h",
751 "src/compilation-dependencies.cc", 753 "src/compilation-dependencies.cc",
752 "src/compilation-dependencies.h", 754 "src/compilation-dependencies.h",
(...skipping 17 matching lines...) Expand all
770 "src/compiler/branch-elimination.h", 772 "src/compiler/branch-elimination.h",
771 "src/compiler/bytecode-branch-analysis.cc", 773 "src/compiler/bytecode-branch-analysis.cc",
772 "src/compiler/bytecode-branch-analysis.h", 774 "src/compiler/bytecode-branch-analysis.h",
773 "src/compiler/bytecode-graph-builder.cc", 775 "src/compiler/bytecode-graph-builder.cc",
774 "src/compiler/bytecode-graph-builder.h", 776 "src/compiler/bytecode-graph-builder.h",
775 "src/compiler/c-linkage.cc", 777 "src/compiler/c-linkage.cc",
776 "src/compiler/change-lowering.cc", 778 "src/compiler/change-lowering.cc",
777 "src/compiler/change-lowering.h", 779 "src/compiler/change-lowering.h",
778 "src/compiler/coalesced-live-ranges.cc", 780 "src/compiler/coalesced-live-ranges.cc",
779 "src/compiler/coalesced-live-ranges.h", 781 "src/compiler/coalesced-live-ranges.h",
782 "src/compiler/code-assembler.cc",
783 "src/compiler/code-assembler.h",
780 "src/compiler/code-generator-impl.h", 784 "src/compiler/code-generator-impl.h",
781 "src/compiler/code-generator.cc", 785 "src/compiler/code-generator.cc",
782 "src/compiler/code-generator.h", 786 "src/compiler/code-generator.h",
783 "src/compiler/code-stub-assembler.cc", 787 "src/compiler/code-stub-assembler.cc",
Michael Starzinger 2016/04/14 09:04:23 nit: These two files are gone now, let's drop them
danno 2016/04/18 11:00:03 Done.
784 "src/compiler/code-stub-assembler.h", 788 "src/compiler/code-stub-assembler.h",
785 "src/compiler/common-node-cache.cc", 789 "src/compiler/common-node-cache.cc",
786 "src/compiler/common-node-cache.h", 790 "src/compiler/common-node-cache.h",
787 "src/compiler/common-operator-reducer.cc", 791 "src/compiler/common-operator-reducer.cc",
788 "src/compiler/common-operator-reducer.h", 792 "src/compiler/common-operator-reducer.h",
789 "src/compiler/common-operator.cc", 793 "src/compiler/common-operator.cc",
790 "src/compiler/common-operator.h", 794 "src/compiler/common-operator.h",
791 "src/compiler/control-builders.cc", 795 "src/compiler/control-builders.cc",
792 "src/compiler/control-builders.h", 796 "src/compiler/control-builders.h",
793 "src/compiler/control-equivalence.cc", 797 "src/compiler/control-equivalence.cc",
(...skipping 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after
2141 2145
2142 configs -= [ "//build/config/compiler:chromium_code" ] 2146 configs -= [ "//build/config/compiler:chromium_code" ]
2143 configs += [ "//build/config/compiler:no_chromium_code" ] 2147 configs += [ "//build/config/compiler:no_chromium_code" ]
2144 configs += [ 2148 configs += [
2145 ":internal_config", 2149 ":internal_config",
2146 ":libplatform_config", 2150 ":libplatform_config",
2147 ":features", 2151 ":features",
2148 ":toolchain", 2152 ":toolchain",
2149 ] 2153 ]
2150 } 2154 }
OLDNEW
« no previous file with comments | « no previous file | src/DEPS » ('j') | src/compiler/code-assembler.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698