| 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/dcheck_always_on.gni") | 7 import("//build/config/dcheck_always_on.gni") |
| 8 import("//build/config/mips.gni") | 8 import("//build/config/mips.gni") |
| 9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
| 10 | 10 |
| (...skipping 2014 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2025 | 2025 |
| 2026 public_configs = [ ":libplatform_config" ] | 2026 public_configs = [ ":libplatform_config" ] |
| 2027 | 2027 |
| 2028 deps = [ | 2028 deps = [ |
| 2029 ":v8_libbase", | 2029 ":v8_libbase", |
| 2030 ] | 2030 ] |
| 2031 } | 2031 } |
| 2032 | 2032 |
| 2033 v8_source_set("v8_libsampler") { | 2033 v8_source_set("v8_libsampler") { |
| 2034 sources = [ | 2034 sources = [ |
| 2035 "src/libsampler/v8-sampler.cc", | 2035 "src/libsampler/sampler.cc", |
| 2036 "src/libsampler/v8-sampler.h", | 2036 "src/libsampler/sampler.h", |
| 2037 ] | 2037 ] |
| 2038 | 2038 |
| 2039 configs = [ ":internal_config_base" ] | 2039 configs = [ ":internal_config_base" ] |
| 2040 | 2040 |
| 2041 public_configs = [ ":libsampler_config" ] | 2041 public_configs = [ ":libsampler_config" ] |
| 2042 | 2042 |
| 2043 deps = [ | 2043 deps = [ |
| 2044 ":v8_libbase", | 2044 ":v8_libbase", |
| 2045 ] | 2045 ] |
| 2046 } | 2046 } |
| (...skipping 348 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2395 | 2395 |
| 2396 deps = [ | 2396 deps = [ |
| 2397 ":fuzzer_support", | 2397 ":fuzzer_support", |
| 2398 ] | 2398 ] |
| 2399 | 2399 |
| 2400 configs = [ ":internal_config" ] | 2400 configs = [ ":internal_config" ] |
| 2401 } | 2401 } |
| 2402 | 2402 |
| 2403 v8_fuzzer("wasm_asmjs_fuzzer") { | 2403 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2404 } | 2404 } |
| OLD | NEW |