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

Side by Side Diff: BUILD.gn

Issue 496393002: MIPS: Move IC code into a subdir and move ic-compilation related code from stub-cache into ic-compi… (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Fix formatting Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | src/ic/mips/ic-compiler-mips.cc » ('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 # TODO(jochen): These will need to be user-settable to support standalone V8 5 # TODO(jochen): These will need to be user-settable to support standalone V8
6 # builds. 6 # builds.
7 v8_compress_startup_data = "off" 7 v8_compress_startup_data = "off"
8 v8_deprecation_warnings = false 8 v8_deprecation_warnings = false
9 v8_enable_disassembler = false 9 v8_enable_disassembler = false
10 v8_enable_gdbjit = false 10 v8_enable_gdbjit = false
(...skipping 1028 matching lines...) Expand 10 before | Expand all | Expand 10 after
1039 "src/mips/code-stubs-mips.h", 1039 "src/mips/code-stubs-mips.h",
1040 "src/mips/constants-mips.cc", 1040 "src/mips/constants-mips.cc",
1041 "src/mips/constants-mips.h", 1041 "src/mips/constants-mips.h",
1042 "src/mips/cpu-mips.cc", 1042 "src/mips/cpu-mips.cc",
1043 "src/mips/debug-mips.cc", 1043 "src/mips/debug-mips.cc",
1044 "src/mips/deoptimizer-mips.cc", 1044 "src/mips/deoptimizer-mips.cc",
1045 "src/mips/disasm-mips.cc", 1045 "src/mips/disasm-mips.cc",
1046 "src/mips/frames-mips.cc", 1046 "src/mips/frames-mips.cc",
1047 "src/mips/frames-mips.h", 1047 "src/mips/frames-mips.h",
1048 "src/mips/full-codegen-mips.cc", 1048 "src/mips/full-codegen-mips.cc",
1049 "src/mips/ic-mips.cc",
1050 "src/mips/lithium-codegen-mips.cc", 1049 "src/mips/lithium-codegen-mips.cc",
1051 "src/mips/lithium-codegen-mips.h", 1050 "src/mips/lithium-codegen-mips.h",
1052 "src/mips/lithium-gap-resolver-mips.cc", 1051 "src/mips/lithium-gap-resolver-mips.cc",
1053 "src/mips/lithium-gap-resolver-mips.h", 1052 "src/mips/lithium-gap-resolver-mips.h",
1054 "src/mips/lithium-mips.cc", 1053 "src/mips/lithium-mips.cc",
1055 "src/mips/lithium-mips.h", 1054 "src/mips/lithium-mips.h",
1056 "src/mips/macro-assembler-mips.cc", 1055 "src/mips/macro-assembler-mips.cc",
1057 "src/mips/macro-assembler-mips.h", 1056 "src/mips/macro-assembler-mips.h",
1058 "src/mips/regexp-macro-assembler-mips.cc", 1057 "src/mips/regexp-macro-assembler-mips.cc",
1059 "src/mips/regexp-macro-assembler-mips.h", 1058 "src/mips/regexp-macro-assembler-mips.h",
1060 "src/mips/simulator-mips.cc", 1059 "src/mips/simulator-mips.cc",
1061 "src/mips/stub-cache-mips.cc", 1060 "src/ic/mips/ic-mips.cc",
1061 "src/ic/mips/ic-compiler-mips.cc",
1062 "src/ic/mips/stub-cache-mips.cc",
1062 ] 1063 ]
1063 } 1064 }
1064 1065
1065 configs -= [ "//build/config/compiler:chromium_code" ] 1066 configs -= [ "//build/config/compiler:chromium_code" ]
1066 configs += [ "//build/config/compiler:no_chromium_code" ] 1067 configs += [ "//build/config/compiler:no_chromium_code" ]
1067 configs += [ ":internal_config", ":features", ":toolchain" ] 1068 configs += [ ":internal_config", ":features", ":toolchain" ]
1068 1069
1069 defines = [] 1070 defines = []
1070 deps = [ ":v8_libbase" ] 1071 deps = [ ":v8_libbase" ]
1071 1072
(...skipping 221 matching lines...) Expand 10 before | Expand all | Expand 10 after
1293 deps = [ 1294 deps = [
1294 ":v8_base", 1295 ":v8_base",
1295 ":v8_nosnapshot", 1296 ":v8_nosnapshot",
1296 ] 1297 ]
1297 } 1298 }
1298 1299
1299 direct_dependent_configs = [ ":external_config" ] 1300 direct_dependent_configs = [ ":external_config" ]
1300 } 1301 }
1301 1302
1302 } 1303 }
OLDNEW
« no previous file with comments | « no previous file | src/ic/mips/ic-compiler-mips.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698