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

Side by Side Diff: BUILD.gn

Issue 2040623003: Add standard Windows manifest to five v8 executables (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 6 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 | no next file » | 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 2182 matching lines...) Expand 10 before | Expand all | Expand 10 after
2193 } 2193 }
2194 } 2194 }
2195 2195
2196 template("v8_fuzzer") { 2196 template("v8_fuzzer") {
2197 name = target_name 2197 name = target_name
2198 forward_variables_from(invoker, "*") 2198 forward_variables_from(invoker, "*")
2199 executable("v8_simple_" + name) { 2199 executable("v8_simple_" + name) {
2200 deps = [ 2200 deps = [
2201 ":" + name, 2201 ":" + name,
2202 ":simple_fuzzer", 2202 ":simple_fuzzer",
2203 "//build/win:default_exe_manifest",
2203 ] 2204 ]
2204 2205
2205 configs += [ ":external_config" ] 2206 configs += [ ":external_config" ]
2206 } 2207 }
2207 } 2208 }
2208 2209
2209 v8_source_set("json_fuzzer") { 2210 v8_source_set("json_fuzzer") {
2210 sources = [ 2211 sources = [
2211 "test/fuzzer/json.cc", 2212 "test/fuzzer/json.cc",
2212 ] 2213 ]
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
2268 ] 2269 ]
2269 2270
2270 deps = [ 2271 deps = [
2271 ":fuzzer_support", 2272 ":fuzzer_support",
2272 ] 2273 ]
2273 2274
2274 configs = [ ":internal_config" ] 2275 configs = [ ":internal_config" ]
2275 } 2276 }
2276 2277
2277 v8_fuzzer("wasm_asmjs_fuzzer") {} 2278 v8_fuzzer("wasm_asmjs_fuzzer") {}
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698