| OLD | NEW |
| 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 2736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2747 "test/common/wasm/wasm-module-runner.cc", | 2747 "test/common/wasm/wasm-module-runner.cc", |
| 2748 "test/common/wasm/wasm-module-runner.h", | 2748 "test/common/wasm/wasm-module-runner.h", |
| 2749 ] | 2749 ] |
| 2750 | 2750 |
| 2751 configs = [ | 2751 configs = [ |
| 2752 ":external_config", | 2752 ":external_config", |
| 2753 ":internal_config_base", | 2753 ":internal_config_base", |
| 2754 ] | 2754 ] |
| 2755 } | 2755 } |
| 2756 | 2756 |
| 2757 v8_source_set("wasm_test_signatures") { |
| 2758 sources = [ |
| 2759 "test/common/wasm/test-signatures.h", |
| 2760 ] |
| 2761 |
| 2762 configs = [ |
| 2763 ":external_config", |
| 2764 ":internal_config_base", |
| 2765 ] |
| 2766 } |
| 2767 |
| 2757 v8_source_set("wasm_fuzzer") { | 2768 v8_source_set("wasm_fuzzer") { |
| 2758 sources = [ | 2769 sources = [ |
| 2759 "test/fuzzer/wasm.cc", | 2770 "test/fuzzer/wasm.cc", |
| 2760 ] | 2771 ] |
| 2761 | 2772 |
| 2762 deps = [ | 2773 deps = [ |
| 2763 ":fuzzer_support", | 2774 ":fuzzer_support", |
| 2764 ":wasm_module_runner", | 2775 ":wasm_module_runner", |
| 2765 ] | 2776 ] |
| 2766 | 2777 |
| (...skipping 26 matching lines...) Expand all Loading... |
| 2793 } | 2804 } |
| 2794 | 2805 |
| 2795 v8_source_set("wasm_code_fuzzer") { | 2806 v8_source_set("wasm_code_fuzzer") { |
| 2796 sources = [ | 2807 sources = [ |
| 2797 "test/fuzzer/wasm-code.cc", | 2808 "test/fuzzer/wasm-code.cc", |
| 2798 ] | 2809 ] |
| 2799 | 2810 |
| 2800 deps = [ | 2811 deps = [ |
| 2801 ":fuzzer_support", | 2812 ":fuzzer_support", |
| 2802 ":wasm_module_runner", | 2813 ":wasm_module_runner", |
| 2814 ":wasm_test_signatures", |
| 2803 ] | 2815 ] |
| 2804 | 2816 |
| 2805 configs = [ | 2817 configs = [ |
| 2806 ":external_config", | 2818 ":external_config", |
| 2807 ":internal_config_base", | 2819 ":internal_config_base", |
| 2808 ] | 2820 ] |
| 2809 } | 2821 } |
| 2810 | 2822 |
| 2811 v8_fuzzer("wasm_code_fuzzer") { | 2823 v8_fuzzer("wasm_code_fuzzer") { |
| 2812 } | 2824 } |
| (...skipping 142 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2955 ] | 2967 ] |
| 2956 | 2968 |
| 2957 configs = [ | 2969 configs = [ |
| 2958 ":external_config", | 2970 ":external_config", |
| 2959 ":internal_config_base", | 2971 ":internal_config_base", |
| 2960 ] | 2972 ] |
| 2961 } | 2973 } |
| 2962 | 2974 |
| 2963 v8_fuzzer("wasm_data_section_fuzzer") { | 2975 v8_fuzzer("wasm_data_section_fuzzer") { |
| 2964 } | 2976 } |
| OLD | NEW |