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

Side by Side Diff: BUILD.gn

Issue 1738943004: Adding Wasm + Wasm-asm variant fuzzer. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fix Created 4 years, 9 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.cc » ('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/mips.gni") 7 import("//build/config/mips.gni")
8 import("//build/config/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 9
10 if (is_android) { 10 if (is_android) {
(...skipping 2026 matching lines...) Expand 10 before | Expand all | Expand 10 after
2037 2037
2038 configs -= [ "//build/config/compiler:chromium_code" ] 2038 configs -= [ "//build/config/compiler:chromium_code" ]
2039 configs += [ "//build/config/compiler:no_chromium_code" ] 2039 configs += [ "//build/config/compiler:no_chromium_code" ]
2040 configs += [ 2040 configs += [
2041 ":internal_config", 2041 ":internal_config",
2042 ":libplatform_config", 2042 ":libplatform_config",
2043 ":features", 2043 ":features",
2044 ":toolchain", 2044 ":toolchain",
2045 ] 2045 ]
2046 } 2046 }
2047
2048 source_set("wasm_fuzzer") {
2049 sources = [
2050 "test/fuzzer/wasm.cc",
2051 ]
2052
2053 deps = [
2054 ":fuzzer_support",
2055 ]
2056
2057 configs -= [ "//build/config/compiler:chromium_code" ]
2058 configs += [ "//build/config/compiler:no_chromium_code" ]
2059 configs += [
2060 ":internal_config",
2061 ":libplatform_config",
2062 ":features",
2063 ":toolchain",
2064 ]
2065 }
2066
2067 source_set("wasm_asmjs_fuzzer") {
2068 sources = [
2069 "test/fuzzer/wasm-asmjs.cc",
2070 ]
2071
2072 deps = [
2073 ":fuzzer_support",
2074 ]
2075
2076 configs -= [ "//build/config/compiler:chromium_code" ]
2077 configs += [ "//build/config/compiler:no_chromium_code" ]
2078 configs += [
2079 ":internal_config",
2080 ":libplatform_config",
2081 ":features",
2082 ":toolchain",
2083 ]
2084 }
OLDNEW
« no previous file with comments | « no previous file | src/wasm/wasm-module.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698