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

Side by Side Diff: BUILD.gn

Issue 2321443002: [wasm] Call the wasm interpreter from the wasm-code-fuzzer. (Closed)
Patch Set: Removed includes and fixed gyp files. 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 | src/wasm/wasm-module.h » ('j') | test/fuzzer/wasm-code.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 2556 matching lines...) Expand 10 before | Expand all | Expand 10 after
2567 ] 2567 ]
2568 2568
2569 configs = [ ":internal_config" ] 2569 configs = [ ":internal_config" ]
2570 } 2570 }
2571 2571
2572 v8_fuzzer("regexp_fuzzer") { 2572 v8_fuzzer("regexp_fuzzer") {
2573 } 2573 }
2574 2574
2575 v8_source_set("wasm_fuzzer") { 2575 v8_source_set("wasm_fuzzer") {
2576 sources = [ 2576 sources = [
2577 "test/cctest/wasm/wasm-module-runner.cc",
2578 "test/cctest/wasm/wasm-module-runner.h",
2577 "test/fuzzer/wasm.cc", 2579 "test/fuzzer/wasm.cc",
2578 ] 2580 ]
2579 2581
2580 deps = [ 2582 deps = [
2581 ":fuzzer_support", 2583 ":fuzzer_support",
2582 ] 2584 ]
2583 2585
2584 configs = [ ":internal_config" ] 2586 configs = [ ":internal_config" ]
2585 } 2587 }
2586 2588
2587 v8_fuzzer("wasm_fuzzer") { 2589 v8_fuzzer("wasm_fuzzer") {
2588 } 2590 }
2589 2591
2590 v8_source_set("wasm_asmjs_fuzzer") { 2592 v8_source_set("wasm_asmjs_fuzzer") {
2591 sources = [ 2593 sources = [
2594 "test/cctest/wasm/wasm-module-runner.cc",
2595 "test/cctest/wasm/wasm-module-runner.h",
2592 "test/fuzzer/wasm-asmjs.cc", 2596 "test/fuzzer/wasm-asmjs.cc",
2593 ] 2597 ]
2594 2598
2595 deps = [ 2599 deps = [
2596 ":fuzzer_support", 2600 ":fuzzer_support",
2597 ] 2601 ]
2598 2602
2599 configs = [ ":internal_config" ] 2603 configs = [ ":internal_config" ]
2600 } 2604 }
2601 2605
2602 v8_fuzzer("wasm_asmjs_fuzzer") { 2606 v8_fuzzer("wasm_asmjs_fuzzer") {
2603 } 2607 }
2604 2608
2605 v8_source_set("wasm_code_fuzzer") { 2609 v8_source_set("wasm_code_fuzzer") {
2606 sources = [ 2610 sources = [
2611 "test/cctest/wasm/wasm-module-runner.cc",
2612 "test/cctest/wasm/wasm-module-runner.h",
2607 "test/fuzzer/wasm-code.cc", 2613 "test/fuzzer/wasm-code.cc",
2608 ] 2614 ]
2609 2615
2610 deps = [ 2616 deps = [
2611 ":fuzzer_support", 2617 ":fuzzer_support",
2612 ] 2618 ]
2613 2619
2614 configs = [ ":internal_config" ] 2620 configs = [ ":internal_config" ]
2615 } 2621 }
2616 2622
2617 v8_fuzzer("wasm_code_fuzzer") { 2623 v8_fuzzer("wasm_code_fuzzer") {
2618 } 2624 }
OLDNEW
« no previous file with comments | « no previous file | src/wasm/wasm-module.h » ('j') | test/fuzzer/wasm-code.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698