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

Side by Side Diff: BUILD.gn

Issue 2336603002: [wasm] Write fuzzers for single wasm sections. (Closed)
Patch Set: Rebase 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 | « no previous file | test/fuzzer/fuzzer.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 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 2622 matching lines...) Expand 10 before | Expand all | Expand 10 after
2633 deps = [ 2633 deps = [
2634 ":fuzzer_support", 2634 ":fuzzer_support",
2635 ":wasm_module_runner", 2635 ":wasm_module_runner",
2636 ] 2636 ]
2637 2637
2638 configs = [ ":internal_config" ] 2638 configs = [ ":internal_config" ]
2639 } 2639 }
2640 2640
2641 v8_fuzzer("wasm_code_fuzzer") { 2641 v8_fuzzer("wasm_code_fuzzer") {
2642 } 2642 }
2643
2644 v8_source_set("lib_wasm_section_fuzzer") {
2645 sources = [
2646 "test/fuzzer/wasm-section-fuzzers.cc",
2647 "test/fuzzer/wasm-section-fuzzers.h",
2648 ]
2649
2650 configs = [ ":internal_config" ]
2651 }
2652
2653 v8_source_set("wasm_types_section_fuzzer") {
2654 sources = [
2655 "test/fuzzer/wasm-types-section.cc",
2656 ]
2657
2658 deps = [
2659 ":fuzzer_support",
2660 ":lib_wasm_section_fuzzer",
2661 ":wasm_module_runner",
2662 ]
2663
2664 configs = [ ":internal_config" ]
2665 }
2666
2667 v8_fuzzer("wasm_types_section_fuzzer") {
2668 }
2669
2670 v8_source_set("wasm_names_section_fuzzer") {
2671 sources = [
2672 "test/fuzzer/wasm-names-section.cc",
2673 ]
2674
2675 deps = [
2676 ":fuzzer_support",
2677 ":lib_wasm_section_fuzzer",
2678 ":wasm_module_runner",
2679 ]
2680
2681 configs = [ ":internal_config" ]
2682 }
2683
2684 v8_fuzzer("wasm_names_section_fuzzer") {
2685 }
2686
2687 v8_source_set("wasm_globals_section_fuzzer") {
2688 sources = [
2689 "test/fuzzer/wasm-globals-section.cc",
2690 ]
2691
2692 deps = [
2693 ":fuzzer_support",
2694 ":lib_wasm_section_fuzzer",
2695 ":wasm_module_runner",
2696 ]
2697
2698 configs = [ ":internal_config" ]
2699 }
2700
2701 v8_fuzzer("wasm_globals_section_fuzzer") {
2702 }
2703
2704 v8_source_set("wasm_imports_section_fuzzer") {
2705 sources = [
2706 "test/fuzzer/wasm-imports-section.cc",
2707 ]
2708
2709 deps = [
2710 ":fuzzer_support",
2711 ":lib_wasm_section_fuzzer",
2712 ":wasm_module_runner",
2713 ]
2714
2715 configs = [ ":internal_config" ]
2716 }
2717
2718 v8_fuzzer("wasm_imports_section_fuzzer") {
2719 }
2720
2721 v8_source_set("wasm_function_sigs_section_fuzzer") {
2722 sources = [
2723 "test/fuzzer/wasm-function-sigs-section.cc",
2724 ]
2725
2726 deps = [
2727 ":fuzzer_support",
2728 ":lib_wasm_section_fuzzer",
2729 ":wasm_module_runner",
2730 ]
2731
2732 configs = [ ":internal_config" ]
2733 }
2734
2735 v8_fuzzer("wasm_function_sigs_section_fuzzer") {
2736 }
2737
2738 v8_source_set("wasm_memory_section_fuzzer") {
2739 sources = [
2740 "test/fuzzer/wasm-memory-section.cc",
2741 ]
2742
2743 deps = [
2744 ":fuzzer_support",
2745 ":lib_wasm_section_fuzzer",
2746 ":wasm_module_runner",
2747 ]
2748
2749 configs = [ ":internal_config" ]
2750 }
2751
2752 v8_fuzzer("wasm_memory_section_fuzzer") {
2753 }
2754
2755 v8_source_set("wasm_data_section_fuzzer") {
2756 sources = [
2757 "test/fuzzer/wasm-data-section.cc",
2758 ]
2759
2760 deps = [
2761 ":fuzzer_support",
2762 ":lib_wasm_section_fuzzer",
2763 ":wasm_module_runner",
2764 ]
2765
2766 configs = [ ":internal_config" ]
2767 }
2768
2769 v8_fuzzer("wasm_data_section_fuzzer") {
2770 }
OLDNEW
« no previous file with comments | « no previous file | test/fuzzer/fuzzer.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698