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

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

Issue 2676513008: [wasm] Managed<T> ensures T's lifetime does not leak past Isolate's (Closed)
Patch Set: link Created 3 years, 10 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
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("unittests") { 7 v8_executable("unittests") {
8 testonly = true 8 testonly = true
9 9
10 sources = [ 10 sources = [
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 "interpreter/bytecode-register-optimizer-unittest.cc", 119 "interpreter/bytecode-register-optimizer-unittest.cc",
120 "interpreter/bytecode-utils.h", 120 "interpreter/bytecode-utils.h",
121 "interpreter/bytecodes-unittest.cc", 121 "interpreter/bytecodes-unittest.cc",
122 "interpreter/constant-array-builder-unittest.cc", 122 "interpreter/constant-array-builder-unittest.cc",
123 "interpreter/interpreter-assembler-unittest.cc", 123 "interpreter/interpreter-assembler-unittest.cc",
124 "interpreter/interpreter-assembler-unittest.h", 124 "interpreter/interpreter-assembler-unittest.h",
125 "libplatform/default-platform-unittest.cc", 125 "libplatform/default-platform-unittest.cc",
126 "libplatform/task-queue-unittest.cc", 126 "libplatform/task-queue-unittest.cc",
127 "libplatform/worker-thread-unittest.cc", 127 "libplatform/worker-thread-unittest.cc",
128 "locked-queue-unittest.cc", 128 "locked-queue-unittest.cc",
129 "managed-unittests.cc",
129 "object-unittest.cc", 130 "object-unittest.cc",
130 "register-configuration-unittest.cc", 131 "register-configuration-unittest.cc",
131 "run-all-unittests.cc", 132 "run-all-unittests.cc",
132 "source-position-table-unittest.cc", 133 "source-position-table-unittest.cc",
133 "test-utils.cc", 134 "test-utils.cc",
134 "test-utils.h", 135 "test-utils.h",
135 "unicode-unittest.cc", 136 "unicode-unittest.cc",
136 "value-serializer-unittest.cc", 137 "value-serializer-unittest.cc",
137 "wasm/asm-types-unittest.cc", 138 "wasm/asm-types-unittest.cc",
138 "wasm/control-transfer-unittest.cc", 139 "wasm/control-transfer-unittest.cc",
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after
192 deps += [ "//third_party/icu" ] 193 deps += [ "//third_party/icu" ]
193 } 194 }
194 195
195 if (is_win) { 196 if (is_win) {
196 # This warning is benignly triggered by the U16 and U32 macros in 197 # This warning is benignly triggered by the U16 and U32 macros in
197 # bytecode-utils.h. 198 # bytecode-utils.h.
198 # C4309: 'static_cast': truncation of constant value 199 # C4309: 'static_cast': truncation of constant value
199 cflags = [ "/wd4309" ] 200 cflags = [ "/wd4309" ]
200 } 201 }
201 } 202 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698