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 1915 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1926 "src/v8.cc", | 1926 "src/v8.cc", |
1927 "src/v8.h", | 1927 "src/v8.h", |
1928 "src/v8memory.h", | 1928 "src/v8memory.h", |
1929 "src/v8threads.cc", | 1929 "src/v8threads.cc", |
1930 "src/v8threads.h", | 1930 "src/v8threads.h", |
1931 "src/value-serializer.cc", | 1931 "src/value-serializer.cc", |
1932 "src/value-serializer.h", | 1932 "src/value-serializer.h", |
1933 "src/vector.h", | 1933 "src/vector.h", |
1934 "src/version.cc", | 1934 "src/version.cc", |
1935 "src/version.h", | 1935 "src/version.h", |
| 1936 "src/visitors.cc", |
| 1937 "src/visitors.h", |
1936 "src/vm-state-inl.h", | 1938 "src/vm-state-inl.h", |
1937 "src/vm-state.h", | 1939 "src/vm-state.h", |
1938 "src/wasm/decoder.h", | 1940 "src/wasm/decoder.h", |
1939 "src/wasm/function-body-decoder-impl.h", | 1941 "src/wasm/function-body-decoder-impl.h", |
1940 "src/wasm/function-body-decoder.cc", | 1942 "src/wasm/function-body-decoder.cc", |
1941 "src/wasm/function-body-decoder.h", | 1943 "src/wasm/function-body-decoder.h", |
1942 "src/wasm/leb-helper.h", | 1944 "src/wasm/leb-helper.h", |
1943 "src/wasm/module-decoder.cc", | 1945 "src/wasm/module-decoder.cc", |
1944 "src/wasm/module-decoder.h", | 1946 "src/wasm/module-decoder.h", |
1945 "src/wasm/signature-map.cc", | 1947 "src/wasm/signature-map.cc", |
(...skipping 1261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3207 ] | 3209 ] |
3208 | 3210 |
3209 configs = [ | 3211 configs = [ |
3210 ":external_config", | 3212 ":external_config", |
3211 ":internal_config_base", | 3213 ":internal_config_base", |
3212 ] | 3214 ] |
3213 } | 3215 } |
3214 | 3216 |
3215 v8_fuzzer("wasm_compile_fuzzer") { | 3217 v8_fuzzer("wasm_compile_fuzzer") { |
3216 } | 3218 } |
OLD | NEW |