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

Unified Diff: test/cctest/BUILD.gn

Issue 2346103002: Fix BUILD.gn files and add presubmit step (Closed)
Patch Set: windows 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/v8.gyp ('k') | test/cctest/cctest.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/BUILD.gn
diff --git a/test/cctest/BUILD.gn b/test/cctest/BUILD.gn
index b9461bfae6a3e33bd51b2b402921f7584ccaf5bd..89f1854a1a56c068f429bdbb9693151a0e5b607b 100644
--- a/test/cctest/BUILD.gn
+++ b/test/cctest/BUILD.gn
@@ -10,8 +10,11 @@ v8_executable("cctest") {
sources = [
"$target_gen_dir/resources.cc",
"asmjs/test-asm-typer.cc",
+ "ast-types-fuzz.h",
"cctest.cc",
+ "cctest.h",
"compiler/c-signature.h",
+ "compiler/call-tester.h",
"compiler/code-assembler-tester.h",
"compiler/codegen-tester.cc",
"compiler/codegen-tester.h",
@@ -55,9 +58,14 @@ v8_executable("cctest") {
"compiler/test-run-unwinding-info.cc",
"compiler/test-run-variables.cc",
"compiler/test-run-wasm-machops.cc",
+ "compiler/value-helper.h",
+ "expression-type-collector-macros.h",
"gay-fixed.cc",
+ "gay-fixed.h",
"gay-precision.cc",
+ "gay-precision.h",
"gay-shortest.cc",
+ "gay-shortest.h",
"heap/heap-tester.h",
"heap/heap-utils.cc",
"heap/heap-utils.h",
@@ -73,6 +81,7 @@ v8_executable("cctest") {
"interpreter/bytecode-expectations-printer.cc",
"interpreter/bytecode-expectations-printer.h",
"interpreter/interpreter-tester.cc",
+ "interpreter/interpreter-tester.h",
"interpreter/source-position-matcher.cc",
"interpreter/source-position-matcher.h",
"interpreter/test-bytecode-generator.cc",
@@ -83,7 +92,9 @@ v8_executable("cctest") {
"libsampler/test-sampler.cc",
"parsing/test-scanner-streams.cc",
"print-extension.cc",
+ "print-extension.h",
"profiler-extension.cc",
+ "profiler-extension.h",
"test-access-checks.cc",
"test-accessors.cc",
"test-api-accessors.cc",
@@ -117,6 +128,7 @@ v8_executable("cctest") {
"test-elements-kind.cc",
"test-fast-dtoa.cc",
"test-feedback-vector.cc",
+ "test-feedback-vector.h",
"test-field-type-tracking.cc",
"test-fixed-dtoa.cc",
"test-flags.cc",
@@ -164,6 +176,8 @@ v8_executable("cctest") {
"test-weakmaps.cc",
"test-weaksets.cc",
"trace-extension.cc",
+ "trace-extension.h",
+ "types-fuzz.h",
"wasm/test-run-wasm-64.cc",
"wasm/test-run-wasm-asmjs.cc",
"wasm/test-run-wasm-interpreter.cc",
@@ -183,6 +197,7 @@ v8_executable("cctest") {
"test-assembler-arm.cc",
"test-code-stubs-arm.cc",
"test-code-stubs.cc",
+ "test-code-stubs.h",
"test-disasm-arm.cc",
"test-macro-assembler-arm.cc",
"test-run-wasm-relocation-arm.cc",
@@ -192,18 +207,21 @@ v8_executable("cctest") {
"test-assembler-arm64.cc",
"test-code-stubs-arm64.cc",
"test-code-stubs.cc",
+ "test-code-stubs.h",
"test-disasm-arm64.cc",
"test-fuzz-arm64.cc",
"test-javascript-arm64.cc",
"test-js-arm64-variables.cc",
"test-run-wasm-relocation-arm64.cc",
"test-utils-arm64.cc",
+ "test-utils-arm64.h",
]
} else if (v8_current_cpu == "x86") {
sources += [
"test-assembler-ia32.cc",
"test-code-stubs-ia32.cc",
"test-code-stubs.cc",
+ "test-code-stubs.h",
"test-disasm-ia32.cc",
"test-log-stack-tracer.cc",
"test-macro-assembler-ia32.cc",
@@ -214,6 +232,7 @@ v8_executable("cctest") {
"test-assembler-mips.cc",
"test-code-stubs-mips.cc",
"test-code-stubs.cc",
+ "test-code-stubs.h",
"test-disasm-mips.cc",
"test-macro-assembler-mips.cc",
]
@@ -222,6 +241,7 @@ v8_executable("cctest") {
"test-assembler-mips.cc",
"test-code-stubs-mips.cc",
"test-code-stubs.cc",
+ "test-code-stubs.h",
"test-disasm-mips.cc",
"test-macro-assembler-mips.cc",
]
@@ -230,6 +250,7 @@ v8_executable("cctest") {
"test-assembler-mips64.cc",
"test-code-stubs-mips64.cc",
"test-code-stubs.cc",
+ "test-code-stubs.h",
"test-disasm-mips64.cc",
"test-macro-assembler-mips64.cc",
]
@@ -238,6 +259,7 @@ v8_executable("cctest") {
"test-assembler-mips64.cc",
"test-code-stubs-mips64.cc",
"test-code-stubs.cc",
+ "test-code-stubs.h",
"test-disasm-mips64.cc",
"test-macro-assembler-mips64.cc",
]
@@ -246,6 +268,7 @@ v8_executable("cctest") {
"test-assembler-x64.cc",
"test-code-stubs-x64.cc",
"test-code-stubs.cc",
+ "test-code-stubs.h",
"test-disasm-x64.cc",
"test-log-stack-tracer.cc",
"test-macro-assembler-x64.cc",
@@ -257,6 +280,7 @@ v8_executable("cctest") {
"test-assembler-x87.cc",
"test-code-stubs-x87.cc",
"test-code-stubs.cc",
+ "test-code-stubs.h",
"test-disasm-x87.cc",
"test-log-stack-tracer.cc",
"test-macro-assembler-x87.cc",
@@ -266,12 +290,14 @@ v8_executable("cctest") {
sources += [
"test-assembler-ppc.cc",
"test-code-stubs.cc",
+ "test-code-stubs.h",
"test-disasm-ppc.cc",
]
} else if (v8_current_cpu == "s390" || v8_current_cpu == "s390x") {
sources += [
"test-assembler-s390.cc",
"test-code-stubs.cc",
+ "test-code-stubs.h",
"test-disasm-s390.cc",
]
}
« no previous file with comments | « src/v8.gyp ('k') | test/cctest/cctest.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698