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 2050 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2061 | 2061 |
2062 if (want_v8_shell) { | 2062 if (want_v8_shell) { |
2063 deps += [ | 2063 deps += [ |
2064 ":v8_shell", | 2064 ":v8_shell", |
2065 ] | 2065 ] |
2066 } | 2066 } |
2067 | 2067 |
2068 if (host_os != "mac" || !is_android) { | 2068 if (host_os != "mac" || !is_android) { |
2069 # These items don't compile for Android on Mac. | 2069 # These items don't compile for Android on Mac. |
2070 deps += [ | 2070 deps += [ |
| 2071 "test/cctest:cctest", |
2071 "test/unittests:unittests", | 2072 "test/unittests:unittests", |
2072 ] | 2073 ] |
2073 } | 2074 } |
2074 } | 2075 } |
2075 | 2076 |
2076 if (is_component_build) { | 2077 if (is_component_build) { |
2077 component("v8") { | 2078 component("v8") { |
2078 sources = [ | 2079 sources = [ |
2079 "src/v8dll-main.cc", | 2080 "src/v8dll-main.cc", |
2080 ] | 2081 ] |
(...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2227 sources = [ | 2228 sources = [ |
2228 "test/fuzzer/wasm-asmjs.cc", | 2229 "test/fuzzer/wasm-asmjs.cc", |
2229 ] | 2230 ] |
2230 | 2231 |
2231 deps = [ | 2232 deps = [ |
2232 ":fuzzer_support", | 2233 ":fuzzer_support", |
2233 ] | 2234 ] |
2234 | 2235 |
2235 configs = [ ":internal_config" ] | 2236 configs = [ ":internal_config" ] |
2236 } | 2237 } |
OLD | NEW |