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

Side by Side Diff: test/cctest/BUILD.gn

Issue 2006183004: Implement ldrex and strex in ARM simulator (Closed) Base URL: http://chromium.googlesource.com/v8/v8.git@master
Patch Set: Lock on reads Created 3 years, 11 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 | « src/arm/simulator-arm.cc ('k') | test/cctest/cctest.gyp » ('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 2016 The V8 project authors. All rights reserved. 1 # Copyright 2016 The V8 project 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("../../gni/v8.gni") 5 import("../../gni/v8.gni")
6 6
7 v8_executable("cctest") { 7 v8_executable("cctest") {
8 testonly = true 8 testonly = true
9 9
10 sources = [ 10 sources = [
(...skipping 188 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 199
200 if (v8_current_cpu == "arm") { 200 if (v8_current_cpu == "arm") {
201 sources += [ ### gcmole(arch:arm) ### 201 sources += [ ### gcmole(arch:arm) ###
202 "test-assembler-arm.cc", 202 "test-assembler-arm.cc",
203 "test-code-stubs-arm.cc", 203 "test-code-stubs-arm.cc",
204 "test-code-stubs.cc", 204 "test-code-stubs.cc",
205 "test-code-stubs.h", 205 "test-code-stubs.h",
206 "test-disasm-arm.cc", 206 "test-disasm-arm.cc",
207 "test-macro-assembler-arm.cc", 207 "test-macro-assembler-arm.cc",
208 "test-run-wasm-relocation-arm.cc", 208 "test-run-wasm-relocation-arm.cc",
209 "test-simulator-arm.cc",
209 "wasm/test-run-wasm-simd.cc", 210 "wasm/test-run-wasm-simd.cc",
210 ] 211 ]
211 } else if (v8_current_cpu == "arm64") { 212 } else if (v8_current_cpu == "arm64") {
212 sources += [ ### gcmole(arch:arm64) ### 213 sources += [ ### gcmole(arch:arm64) ###
213 "test-assembler-arm64.cc", 214 "test-assembler-arm64.cc",
214 "test-code-stubs-arm64.cc", 215 "test-code-stubs-arm64.cc",
215 "test-code-stubs.cc", 216 "test-code-stubs.cc",
216 "test-code-stubs.h", 217 "test-code-stubs.h",
217 "test-disasm-arm64.cc", 218 "test-disasm-arm64.cc",
218 "test-fuzz-arm64.cc", 219 "test-fuzz-arm64.cc",
(...skipping 212 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 ] 432 ]
432 433
433 deps = [ 434 deps = [
434 "../..:v8", 435 "../..:v8",
435 "../..:v8_libbase", 436 "../..:v8_libbase",
436 "../..:v8_libplatform", 437 "../..:v8_libplatform",
437 "//build/config/sanitizers:deps", 438 "//build/config/sanitizers:deps",
438 "//build/win:default_exe_manifest", 439 "//build/win:default_exe_manifest",
439 ] 440 ]
440 } 441 }
OLDNEW
« no previous file with comments | « src/arm/simulator-arm.cc ('k') | test/cctest/cctest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698