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

Side by Side Diff: BUILD.gn

Issue 2280623002: [wasm] Create a new fuzzer for wasm code. (Closed)
Patch Set: Getting the naming scheme right 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 2562 matching lines...) Expand 10 before | Expand all | Expand 10 after
2573 2573
2574 deps = [ 2574 deps = [
2575 ":fuzzer_support", 2575 ":fuzzer_support",
2576 ] 2576 ]
2577 2577
2578 configs = [ ":internal_config" ] 2578 configs = [ ":internal_config" ]
2579 } 2579 }
2580 2580
2581 v8_fuzzer("wasm_asmjs_fuzzer") { 2581 v8_fuzzer("wasm_asmjs_fuzzer") {
2582 } 2582 }
2583
2584 v8_source_set("wasm_code_fuzzer") {
2585 sources = [
2586 "test/fuzzer/wasm-code.cc",
2587 ]
2588
2589 deps = [
2590 ":fuzzer_support",
2591 ]
2592
2593 configs = [ ":internal_config" ]
2594 }
2595
2596 v8_fuzzer("wasm_code_fuzzer") {
2597 }
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