OLD | NEW |
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 2047 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2058 group("gn_all") { | 2058 group("gn_all") { |
2059 testonly = true | 2059 testonly = true |
2060 | 2060 |
2061 deps = [ | 2061 deps = [ |
2062 ":d8", | 2062 ":d8", |
2063 ":v8_simple_json_fuzzer", | 2063 ":v8_simple_json_fuzzer", |
2064 ":v8_simple_parser_fuzzer", | 2064 ":v8_simple_parser_fuzzer", |
2065 ":v8_simple_regexp_fuzzer", | 2065 ":v8_simple_regexp_fuzzer", |
2066 ":v8_simple_wasm_fuzzer", | 2066 ":v8_simple_wasm_fuzzer", |
2067 ":v8_simple_wasm_asmjs_fuzzer", | 2067 ":v8_simple_wasm_asmjs_fuzzer", |
| 2068 "test:gn_all", |
| 2069 "tools:gn_all", |
2068 ] | 2070 ] |
2069 | 2071 |
2070 if (want_v8_shell) { | 2072 if (want_v8_shell) { |
2071 deps += [ | 2073 deps += [ |
2072 ":v8_shell", | 2074 ":v8_shell", |
2073 ] | 2075 ] |
2074 } | 2076 } |
2075 | 2077 |
2076 if (host_os != "mac" || !is_android) { | 2078 if (v8_test_isolation_mode != "noop") { |
2077 # These items don't compile for Android on Mac. | |
2078 deps += [ | 2079 deps += [ |
2079 "test/cctest:cctest", | 2080 ":d8_run", |
2080 "test/unittests:unittests", | |
2081 ] | 2081 ] |
2082 } | 2082 } |
2083 } | 2083 } |
2084 | 2084 |
2085 if (is_component_build) { | 2085 if (is_component_build) { |
2086 component("v8") { | 2086 component("v8") { |
2087 sources = [ | 2087 sources = [ |
2088 "src/v8dll-main.cc", | 2088 "src/v8dll-main.cc", |
2089 ] | 2089 ] |
2090 | 2090 |
(...skipping 176 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2267 ] | 2267 ] |
2268 | 2268 |
2269 deps = [ | 2269 deps = [ |
2270 ":fuzzer_support", | 2270 ":fuzzer_support", |
2271 ] | 2271 ] |
2272 | 2272 |
2273 configs = [ ":internal_config" ] | 2273 configs = [ ":internal_config" ] |
2274 } | 2274 } |
2275 | 2275 |
2276 v8_fuzzer("wasm_asmjs_fuzzer") {} | 2276 v8_fuzzer("wasm_asmjs_fuzzer") {} |
OLD | NEW |