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

Side by Side Diff: BUILD.gn

Issue 2335193002: [wasm] Move the wasm-module-runner from test/cctest to test/common (Closed)
Patch Set: Files should be compiled exactly once in a GN build. 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/cctest/BUILD.gn » ('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 2566 matching lines...) Expand 10 before | Expand all | Expand 10 after
2577 deps = [ 2577 deps = [
2578 ":fuzzer_support", 2578 ":fuzzer_support",
2579 ] 2579 ]
2580 2580
2581 configs = [ ":internal_config" ] 2581 configs = [ ":internal_config" ]
2582 } 2582 }
2583 2583
2584 v8_fuzzer("regexp_fuzzer") { 2584 v8_fuzzer("regexp_fuzzer") {
2585 } 2585 }
2586 2586
2587 v8_source_set("wasm_module_runner") {
2588 sources = [
2589 "test/common/wasm/wasm-module-runner.cc",
2590 "test/common/wasm/wasm-module-runner.h",
2591 ]
2592
2593 configs = [ ":internal_config" ]
2594 }
2595
2587 v8_source_set("wasm_fuzzer") { 2596 v8_source_set("wasm_fuzzer") {
2588 sources = [ 2597 sources = [
2589 "test/cctest/wasm/wasm-module-runner.cc",
2590 "test/cctest/wasm/wasm-module-runner.h",
2591 "test/fuzzer/wasm.cc", 2598 "test/fuzzer/wasm.cc",
2592 ] 2599 ]
2593 2600
2594 deps = [ 2601 deps = [
2595 ":fuzzer_support", 2602 ":fuzzer_support",
2603 ":wasm_module_runner",
2596 ] 2604 ]
2597 2605
2598 configs = [ ":internal_config" ] 2606 configs = [ ":internal_config" ]
2599 } 2607 }
2600 2608
2601 v8_fuzzer("wasm_fuzzer") { 2609 v8_fuzzer("wasm_fuzzer") {
2602 } 2610 }
2603 2611
2604 v8_source_set("wasm_asmjs_fuzzer") { 2612 v8_source_set("wasm_asmjs_fuzzer") {
2605 sources = [ 2613 sources = [
2606 "test/cctest/wasm/wasm-module-runner.cc",
2607 "test/cctest/wasm/wasm-module-runner.h",
2608 "test/fuzzer/wasm-asmjs.cc", 2614 "test/fuzzer/wasm-asmjs.cc",
2609 ] 2615 ]
2610 2616
2611 deps = [ 2617 deps = [
2612 ":fuzzer_support", 2618 ":fuzzer_support",
2619 ":wasm_module_runner",
2613 ] 2620 ]
2614 2621
2615 configs = [ ":internal_config" ] 2622 configs = [ ":internal_config" ]
2616 } 2623 }
2617 2624
2618 v8_fuzzer("wasm_asmjs_fuzzer") { 2625 v8_fuzzer("wasm_asmjs_fuzzer") {
2619 } 2626 }
2620 2627
2621 v8_source_set("wasm_code_fuzzer") { 2628 v8_source_set("wasm_code_fuzzer") {
2622 sources = [ 2629 sources = [
2623 "test/cctest/wasm/wasm-module-runner.cc",
2624 "test/cctest/wasm/wasm-module-runner.h",
2625 "test/fuzzer/wasm-code.cc", 2630 "test/fuzzer/wasm-code.cc",
2626 ] 2631 ]
2627 2632
2628 deps = [ 2633 deps = [
2629 ":fuzzer_support", 2634 ":fuzzer_support",
2635 ":wasm_module_runner",
2630 ] 2636 ]
2631 2637
2632 configs = [ ":internal_config" ] 2638 configs = [ ":internal_config" ]
2633 } 2639 }
2634 2640
2635 v8_fuzzer("wasm_code_fuzzer") { 2641 v8_fuzzer("wasm_code_fuzzer") {
2636 } 2642 }
OLDNEW
« no previous file with comments | « no previous file | test/cctest/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698