| 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 1931 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1942 "src/v8.cc", | 1942 "src/v8.cc", |
| 1943 "src/v8.h", | 1943 "src/v8.h", |
| 1944 "src/v8memory.h", | 1944 "src/v8memory.h", |
| 1945 "src/v8threads.cc", | 1945 "src/v8threads.cc", |
| 1946 "src/v8threads.h", | 1946 "src/v8threads.h", |
| 1947 "src/value-serializer.cc", | 1947 "src/value-serializer.cc", |
| 1948 "src/value-serializer.h", | 1948 "src/value-serializer.h", |
| 1949 "src/vector.h", | 1949 "src/vector.h", |
| 1950 "src/version.cc", | 1950 "src/version.cc", |
| 1951 "src/version.h", | 1951 "src/version.h", |
| 1952 "src/visitors.cc", |
| 1953 "src/visitors.h", |
| 1952 "src/vm-state-inl.h", | 1954 "src/vm-state-inl.h", |
| 1953 "src/vm-state.h", | 1955 "src/vm-state.h", |
| 1954 "src/wasm/decoder.h", | 1956 "src/wasm/decoder.h", |
| 1955 "src/wasm/function-body-decoder-impl.h", | 1957 "src/wasm/function-body-decoder-impl.h", |
| 1956 "src/wasm/function-body-decoder.cc", | 1958 "src/wasm/function-body-decoder.cc", |
| 1957 "src/wasm/function-body-decoder.h", | 1959 "src/wasm/function-body-decoder.h", |
| 1958 "src/wasm/leb-helper.h", | 1960 "src/wasm/leb-helper.h", |
| 1959 "src/wasm/module-decoder.cc", | 1961 "src/wasm/module-decoder.cc", |
| 1960 "src/wasm/module-decoder.h", | 1962 "src/wasm/module-decoder.h", |
| 1961 "src/wasm/signature-map.cc", | 1963 "src/wasm/signature-map.cc", |
| (...skipping 1284 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 3246 ] | 3248 ] |
| 3247 | 3249 |
| 3248 configs = [ | 3250 configs = [ |
| 3249 ":external_config", | 3251 ":external_config", |
| 3250 ":internal_config_base", | 3252 ":internal_config_base", |
| 3251 ] | 3253 ] |
| 3252 } | 3254 } |
| 3253 | 3255 |
| 3254 v8_fuzzer("wasm_compile_fuzzer") { | 3256 v8_fuzzer("wasm_compile_fuzzer") { |
| 3255 } | 3257 } |
| OLD | NEW |