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

Side by Side Diff: BUILD.gn

Issue 2447643002: [wasm] Add a new fuzzer which can also test wasm function calls. (Closed)
Patch Set: sign unsigned mismatch Created 4 years, 1 month 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 | « no previous file | test/fuzzer/fuzzer.gyp » ('j') | test/fuzzer/wasm-call.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium 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("//build/config/android/config.gni") 5 import("//build/config/android/config.gni")
6 import("//build/config/arm.gni") 6 import("//build/config/arm.gni")
7 import("//build/config/dcheck_always_on.gni") 7 import("//build/config/dcheck_always_on.gni")
8 import("//build/config/mips.gni") 8 import("//build/config/mips.gni")
9 import("//build/config/sanitizers/sanitizers.gni") 9 import("//build/config/sanitizers/sanitizers.gni")
10 10
(...skipping 2798 matching lines...) Expand 10 before | Expand all | Expand 10 after
2809 2809
2810 configs = [ 2810 configs = [
2811 ":external_config", 2811 ":external_config",
2812 ":internal_config_base", 2812 ":internal_config_base",
2813 ] 2813 ]
2814 } 2814 }
2815 2815
2816 v8_fuzzer("wasm_code_fuzzer") { 2816 v8_fuzzer("wasm_code_fuzzer") {
2817 } 2817 }
2818 2818
2819 v8_source_set("wasm_call_fuzzer") {
2820 sources = [
2821 "test/fuzzer/wasm-call.cc",
2822 ]
2823
2824 deps = [
2825 ":fuzzer_support",
2826 ":wasm_module_runner",
2827 ":wasm_test_signatures",
2828 ]
2829
2830 configs = [
2831 ":external_config",
2832 ":internal_config_base",
2833 ]
2834 }
2835
2836 v8_fuzzer("wasm_call_fuzzer") {
2837 }
2838
2819 v8_source_set("lib_wasm_section_fuzzer") { 2839 v8_source_set("lib_wasm_section_fuzzer") {
2820 sources = [ 2840 sources = [
2821 "test/fuzzer/wasm-section-fuzzers.cc", 2841 "test/fuzzer/wasm-section-fuzzers.cc",
2822 "test/fuzzer/wasm-section-fuzzers.h", 2842 "test/fuzzer/wasm-section-fuzzers.h",
2823 ] 2843 ]
2824 2844
2825 configs = [ 2845 configs = [
2826 ":external_config", 2846 ":external_config",
2827 ":internal_config_base", 2847 ":internal_config_base",
2828 ] 2848 ]
(...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after
2960 ] 2980 ]
2961 2981
2962 configs = [ 2982 configs = [
2963 ":external_config", 2983 ":external_config",
2964 ":internal_config_base", 2984 ":internal_config_base",
2965 ] 2985 ]
2966 } 2986 }
2967 2987
2968 v8_fuzzer("wasm_data_section_fuzzer") { 2988 v8_fuzzer("wasm_data_section_fuzzer") {
2969 } 2989 }
OLDNEW
« no previous file with comments | « no previous file | test/fuzzer/fuzzer.gyp » ('j') | test/fuzzer/wasm-call.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698