Chromium Code Reviews| 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 2003 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2014 "//build/config/sanitizers:deps", | 2014 "//build/config/sanitizers:deps", |
| 2015 "//build/win:default_exe_manifest", | 2015 "//build/win:default_exe_manifest", |
| 2016 ] | 2016 ] |
| 2017 } | 2017 } |
| 2018 } | 2018 } |
| 2019 | 2019 |
| 2020 ############################################################################### | 2020 ############################################################################### |
| 2021 # Public targets | 2021 # Public targets |
| 2022 # | 2022 # |
| 2023 | 2023 |
| 2024 group("gn_all") { | |
|
Michael Achenbach
2016/05/25 09:12:53
This ports parts of https://code.google.com/p/chro
| |
| 2025 testonly = true | |
| 2026 | |
| 2027 deps = [ | |
| 2028 ":d8", | |
| 2029 ":v8_shell", | |
| 2030 ] | |
| 2031 | |
| 2032 if (host_os != "mac" || !is_android) { | |
| 2033 # These items don't compile for Android on Mac. | |
| 2034 deps += [ | |
| 2035 "test/unittests:unittests", | |
| 2036 ] | |
| 2037 } | |
| 2038 } | |
| 2039 | |
| 2024 if (is_component_build) { | 2040 if (is_component_build) { |
| 2025 component("v8") { | 2041 component("v8") { |
| 2026 sources = [ | 2042 sources = [ |
| 2027 "src/v8dll-main.cc", | 2043 "src/v8dll-main.cc", |
| 2028 ] | 2044 ] |
| 2029 | 2045 |
| 2030 public_deps = [ | 2046 public_deps = [ |
| 2031 ":v8_base", | 2047 ":v8_base", |
| 2032 snapshot_target, | 2048 snapshot_target, |
| 2033 ] | 2049 ] |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 2178 sources = [ | 2194 sources = [ |
| 2179 "test/fuzzer/wasm-asmjs.cc", | 2195 "test/fuzzer/wasm-asmjs.cc", |
| 2180 ] | 2196 ] |
| 2181 | 2197 |
| 2182 deps = [ | 2198 deps = [ |
| 2183 ":fuzzer_support", | 2199 ":fuzzer_support", |
| 2184 ] | 2200 ] |
| 2185 | 2201 |
| 2186 configs = [ ":internal_config" ] | 2202 configs = [ ":internal_config" ] |
| 2187 } | 2203 } |
| OLD | NEW |