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

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

Issue 2345053003: Behold, a unit test for Scanner::BookmarkScope (& scanner bookmarking). (Closed)
Patch Set: Rebase & fix .gyp file. Created 4 years, 3 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/parsing/scanner.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 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 "interpreter/interpreter-tester.h", 84 "interpreter/interpreter-tester.h",
85 "interpreter/source-position-matcher.cc", 85 "interpreter/source-position-matcher.cc",
86 "interpreter/source-position-matcher.h", 86 "interpreter/source-position-matcher.h",
87 "interpreter/test-bytecode-generator.cc", 87 "interpreter/test-bytecode-generator.cc",
88 "interpreter/test-interpreter-intrinsics.cc", 88 "interpreter/test-interpreter-intrinsics.cc",
89 "interpreter/test-interpreter.cc", 89 "interpreter/test-interpreter.cc",
90 "interpreter/test-source-positions.cc", 90 "interpreter/test-source-positions.cc",
91 "libplatform/test-tracing.cc", 91 "libplatform/test-tracing.cc",
92 "libsampler/test-sampler.cc", 92 "libsampler/test-sampler.cc",
93 "parsing/test-scanner-streams.cc", 93 "parsing/test-scanner-streams.cc",
94 "parsing/test-scanner.cc",
94 "print-extension.cc", 95 "print-extension.cc",
95 "print-extension.h", 96 "print-extension.h",
96 "profiler-extension.cc", 97 "profiler-extension.cc",
97 "profiler-extension.h", 98 "profiler-extension.h",
98 "test-access-checks.cc", 99 "test-access-checks.cc",
99 "test-accessors.cc", 100 "test-accessors.cc",
100 "test-api-accessors.cc", 101 "test-api-accessors.cc",
101 "test-api-fast-accessor-builder.cc", 102 "test-api-fast-accessor-builder.cc",
102 "test-api-interceptors.cc", 103 "test-api-interceptors.cc",
103 "test-api.cc", 104 "test-api.cc",
(...skipping 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
427 if (is_win) { 428 if (is_win) {
428 # Suppress warnings about importing locally defined symbols. 429 # Suppress warnings about importing locally defined symbols.
429 if (is_component_build) { 430 if (is_component_build) {
430 ldflags = [ 431 ldflags = [
431 "/ignore:4049", 432 "/ignore:4049",
432 "/ignore:4217", 433 "/ignore:4217",
433 ] 434 ]
434 } 435 }
435 } 436 }
436 } 437 }
OLDNEW
« no previous file with comments | « src/parsing/scanner.cc ('k') | test/cctest/cctest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698