| OLD | NEW |
| 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("unittests") { | 7 v8_executable("unittests") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 sources = [ | 10 sources = [ |
| (...skipping 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 "wasm/asm-types-unittest.cc", | 132 "wasm/asm-types-unittest.cc", |
| 133 "wasm/control-transfer-unittest.cc", | 133 "wasm/control-transfer-unittest.cc", |
| 134 "wasm/decoder-unittest.cc", | 134 "wasm/decoder-unittest.cc", |
| 135 "wasm/function-body-decoder-unittest.cc", | 135 "wasm/function-body-decoder-unittest.cc", |
| 136 "wasm/leb-helper-unittest.cc", | 136 "wasm/leb-helper-unittest.cc", |
| 137 "wasm/loop-assignment-analysis-unittest.cc", | 137 "wasm/loop-assignment-analysis-unittest.cc", |
| 138 "wasm/module-decoder-unittest.cc", | 138 "wasm/module-decoder-unittest.cc", |
| 139 "wasm/switch-logic-unittest.cc", | 139 "wasm/switch-logic-unittest.cc", |
| 140 "wasm/wasm-macro-gen-unittest.cc", | 140 "wasm/wasm-macro-gen-unittest.cc", |
| 141 "wasm/wasm-module-builder-unittest.cc", | 141 "wasm/wasm-module-builder-unittest.cc", |
| 142 "wasm/wasm-opcodes-unittest.cc", |
| 142 "zone/segmentpool-unittest.cc", | 143 "zone/segmentpool-unittest.cc", |
| 143 "zone/zone-chunk-list-unittest.cc", | 144 "zone/zone-chunk-list-unittest.cc", |
| 144 ] | 145 ] |
| 145 | 146 |
| 146 if (v8_current_cpu == "arm") { | 147 if (v8_current_cpu == "arm") { |
| 147 sources += [ "compiler/arm/instruction-selector-arm-unittest.cc" ] | 148 sources += [ "compiler/arm/instruction-selector-arm-unittest.cc" ] |
| 148 } else if (v8_current_cpu == "arm64") { | 149 } else if (v8_current_cpu == "arm64") { |
| 149 sources += [ "compiler/arm64/instruction-selector-arm64-unittest.cc" ] | 150 sources += [ "compiler/arm64/instruction-selector-arm64-unittest.cc" ] |
| 150 } else if (v8_current_cpu == "x86") { | 151 } else if (v8_current_cpu == "x86") { |
| 151 sources += [ "compiler/ia32/instruction-selector-ia32-unittest.cc" ] | 152 sources += [ "compiler/ia32/instruction-selector-ia32-unittest.cc" ] |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 deps += [ "//third_party/icu" ] | 186 deps += [ "//third_party/icu" ] |
| 186 } | 187 } |
| 187 | 188 |
| 188 if (is_win) { | 189 if (is_win) { |
| 189 # This warning is benignly triggered by the U16 and U32 macros in | 190 # This warning is benignly triggered by the U16 and U32 macros in |
| 190 # bytecode-utils.h. | 191 # bytecode-utils.h. |
| 191 # C4309: 'static_cast': truncation of constant value | 192 # C4309: 'static_cast': truncation of constant value |
| 192 cflags = [ "/wd4309" ] | 193 cflags = [ "/wd4309" ] |
| 193 } | 194 } |
| 194 } | 195 } |
| OLD | NEW |