| 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 2027 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2038 | 2038 |
| 2039 if (want_v8_shell) { | 2039 if (want_v8_shell) { |
| 2040 deps += [ | 2040 deps += [ |
| 2041 ":v8_shell", | 2041 ":v8_shell", |
| 2042 ] | 2042 ] |
| 2043 } | 2043 } |
| 2044 | 2044 |
| 2045 if (host_os != "mac" || !is_android) { | 2045 if (host_os != "mac" || !is_android) { |
| 2046 # These items don't compile for Android on Mac. | 2046 # These items don't compile for Android on Mac. |
| 2047 deps += [ | 2047 deps += [ |
| 2048 "test/cctest:cctest", | |
| 2049 "test/unittests:unittests", | 2048 "test/unittests:unittests", |
| 2050 ] | 2049 ] |
| 2051 } | 2050 } |
| 2052 } | 2051 } |
| 2053 | 2052 |
| 2054 if (is_component_build) { | 2053 if (is_component_build) { |
| 2055 component("v8") { | 2054 component("v8") { |
| 2056 sources = [ | 2055 sources = [ |
| 2057 "src/v8dll-main.cc", | 2056 "src/v8dll-main.cc", |
| 2058 ] | 2057 ] |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2205 sources = [ | 2204 sources = [ |
| 2206 "test/fuzzer/wasm-asmjs.cc", | 2205 "test/fuzzer/wasm-asmjs.cc", |
| 2207 ] | 2206 ] |
| 2208 | 2207 |
| 2209 deps = [ | 2208 deps = [ |
| 2210 ":fuzzer_support", | 2209 ":fuzzer_support", |
| 2211 ] | 2210 ] |
| 2212 | 2211 |
| 2213 configs = [ ":internal_config" ] | 2212 configs = [ ":internal_config" ] |
| 2214 } | 2213 } |
| OLD | NEW |