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

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

Issue 2065323004: [gn] Fix targets for x86 v8_target_arch (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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 | test/unittests/BUILD.gn » ('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 # Please keep this file in sync with cctest.gyp. 5 # Please keep this file in sync with cctest.gyp.
6 6
7 import("../../gni/v8.gni") 7 import("../../gni/v8.gni")
8 8
9 v8_executable("cctest") { 9 v8_executable("cctest") {
10 testonly = true 10 testonly = true
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 "test-assembler-arm64.cc", 187 "test-assembler-arm64.cc",
188 "test-code-stubs-arm64.cc", 188 "test-code-stubs-arm64.cc",
189 "test-code-stubs.cc", 189 "test-code-stubs.cc",
190 "test-disasm-arm64.cc", 190 "test-disasm-arm64.cc",
191 "test-fuzz-arm64.cc", 191 "test-fuzz-arm64.cc",
192 "test-javascript-arm64.cc", 192 "test-javascript-arm64.cc",
193 "test-js-arm64-variables.cc", 193 "test-js-arm64-variables.cc",
194 "test-run-wasm-relocation-arm64.cc", 194 "test-run-wasm-relocation-arm64.cc",
195 "test-utils-arm64.cc", 195 "test-utils-arm64.cc",
196 ] 196 ]
197 } else if (v8_target_arch == "ia32") { 197 } else if (v8_target_arch == "x86") {
198 sources += [ 198 sources += [
199 "test-assembler-ia32.cc", 199 "test-assembler-ia32.cc",
200 "test-code-stubs-ia32.cc", 200 "test-code-stubs-ia32.cc",
201 "test-code-stubs.cc", 201 "test-code-stubs.cc",
202 "test-disasm-ia32.cc", 202 "test-disasm-ia32.cc",
203 "test-log-stack-tracer.cc", 203 "test-log-stack-tracer.cc",
204 "test-macro-assembler-ia32.cc", 204 "test-macro-assembler-ia32.cc",
205 "test-run-wasm-relocation-ia32.cc", 205 "test-run-wasm-relocation-ia32.cc",
206 ] 206 ]
207 } else if (v8_target_arch == "mips") { 207 } else if (v8_target_arch == "mips") {
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
361 "$target_gen_dir/resources.cc", 361 "$target_gen_dir/resources.cc",
362 ] 362 ]
363 363
364 args = [ 364 args = [
365 rebase_path("$target_gen_dir/resources.cc", root_build_dir), 365 rebase_path("$target_gen_dir/resources.cc", root_build_dir),
366 "TEST", 366 "TEST",
367 ] 367 ]
368 args += rebase_path(sources, root_build_dir) 368 args += rebase_path(sources, root_build_dir)
369 } 369 }
370 # TODO(machenbach): Migrate generate-bytecode-expectations. 370 # TODO(machenbach): Migrate generate-bytecode-expectations.
OLDNEW
« no previous file with comments | « no previous file | test/unittests/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698