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

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

Issue 2760233005: [snapshot] Move builtins generation into mksnapshot (Closed)
Patch Set: Created 3 years, 9 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("cctest") { 7 v8_executable("cctest") {
8 testonly = true 8 testonly = true
9 9
10 sources = [ 10 sources = [
(...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 "libsampler/test-sampler.cc", 94 "libsampler/test-sampler.cc",
95 "parsing/test-parse-decision.cc", 95 "parsing/test-parse-decision.cc",
96 "parsing/test-preparser.cc", 96 "parsing/test-preparser.cc",
97 "parsing/test-scanner-streams.cc", 97 "parsing/test-scanner-streams.cc",
98 "parsing/test-scanner.cc", 98 "parsing/test-scanner.cc",
99 "print-extension.cc", 99 "print-extension.cc",
100 "print-extension.h", 100 "print-extension.h",
101 "profiler-extension.cc", 101 "profiler-extension.cc",
102 "profiler-extension.h", 102 "profiler-extension.h",
103 "scope-test-helper.h", 103 "scope-test-helper.h",
104 "setup-builtins-for-tests.cc",
105 "setup-builtins-for-tests.h",
104 "test-access-checks.cc", 106 "test-access-checks.cc",
105 "test-accessor-assembler.cc", 107 "test-accessor-assembler.cc",
106 "test-accessors.cc", 108 "test-accessors.cc",
107 "test-api-accessors.cc", 109 "test-api-accessors.cc",
108 "test-api-interceptors.cc", 110 "test-api-interceptors.cc",
109 "test-api.cc", 111 "test-api.cc",
110 "test-api.h", 112 "test-api.h",
111 "test-array-list.cc", 113 "test-array-list.cc",
112 "test-ast-types.cc", 114 "test-ast-types.cc",
113 "test-ast.cc", 115 "test-ast.cc",
(...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after
324 "../..:internal_config_base", 326 "../..:internal_config_base",
325 ] 327 ]
326 328
327 # TODO(machenbach): Translate from gyp. 329 # TODO(machenbach): Translate from gyp.
328 #["OS=="aix"", { 330 #["OS=="aix"", {
329 # "ldflags": [ "-Wl,-bbigtoc" ], 331 # "ldflags": [ "-Wl,-bbigtoc" ],
330 #}], 332 #}],
331 333
332 deps = [ 334 deps = [
333 ":resources", 335 ":resources",
336 "../..:v8_builtins_generators",
334 "../..:v8_libbase", 337 "../..:v8_libbase",
335 "../..:v8_libplatform", 338 "../..:v8_libplatform",
336 "../..:wasm_module_runner", 339 "../..:wasm_module_runner",
337 "../..:wasm_test_signatures", 340 "../..:wasm_test_signatures",
338 "//build/config/sanitizers:deps", 341 "//build/config/sanitizers:deps",
339 "//build/win:default_exe_manifest", 342 "//build/win:default_exe_manifest",
340 ] 343 ]
341 344
342 defines = [] 345 defines = []
343 346
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
431 ] 434 ]
432 435
433 deps = [ 436 deps = [
434 "../..:v8", 437 "../..:v8",
435 "../..:v8_libbase", 438 "../..:v8_libbase",
436 "../..:v8_libplatform", 439 "../..:v8_libplatform",
437 "//build/config/sanitizers:deps", 440 "//build/config/sanitizers:deps",
438 "//build/win:default_exe_manifest", 441 "//build/win:default_exe_manifest",
439 ] 442 ]
440 } 443 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698