| 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 1627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1638 "src/runtime/runtime-operators.cc", | 1638 "src/runtime/runtime-operators.cc", |
| 1639 "src/runtime/runtime-promise.cc", | 1639 "src/runtime/runtime-promise.cc", |
| 1640 "src/runtime/runtime-proxy.cc", | 1640 "src/runtime/runtime-proxy.cc", |
| 1641 "src/runtime/runtime-regexp.cc", | 1641 "src/runtime/runtime-regexp.cc", |
| 1642 "src/runtime/runtime-scopes.cc", | 1642 "src/runtime/runtime-scopes.cc", |
| 1643 "src/runtime/runtime-simd.cc", | 1643 "src/runtime/runtime-simd.cc", |
| 1644 "src/runtime/runtime-strings.cc", | 1644 "src/runtime/runtime-strings.cc", |
| 1645 "src/runtime/runtime-symbol.cc", | 1645 "src/runtime/runtime-symbol.cc", |
| 1646 "src/runtime/runtime-test.cc", | 1646 "src/runtime/runtime-test.cc", |
| 1647 "src/runtime/runtime-typedarray.cc", | 1647 "src/runtime/runtime-typedarray.cc", |
| 1648 "src/runtime/runtime-utils.cc", |
| 1648 "src/runtime/runtime-utils.h", | 1649 "src/runtime/runtime-utils.h", |
| 1649 "src/runtime/runtime-wasm.cc", | 1650 "src/runtime/runtime-wasm.cc", |
| 1650 "src/runtime/runtime.cc", | 1651 "src/runtime/runtime.cc", |
| 1651 "src/runtime/runtime.h", | 1652 "src/runtime/runtime.h", |
| 1652 "src/safepoint-table.cc", | 1653 "src/safepoint-table.cc", |
| 1653 "src/safepoint-table.h", | 1654 "src/safepoint-table.h", |
| 1654 "src/signature.h", | 1655 "src/signature.h", |
| 1655 "src/simulator.h", | 1656 "src/simulator.h", |
| 1656 "src/small-pointer-list.h", | 1657 "src/small-pointer-list.h", |
| 1657 "src/snapshot/code-serializer.cc", | 1658 "src/snapshot/code-serializer.cc", |
| (...skipping 1328 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2986 ] | 2987 ] |
| 2987 | 2988 |
| 2988 configs = [ | 2989 configs = [ |
| 2989 ":external_config", | 2990 ":external_config", |
| 2990 ":internal_config_base", | 2991 ":internal_config_base", |
| 2991 ] | 2992 ] |
| 2992 } | 2993 } |
| 2993 | 2994 |
| 2994 v8_fuzzer("wasm_data_section_fuzzer") { | 2995 v8_fuzzer("wasm_data_section_fuzzer") { |
| 2995 } | 2996 } |
| OLD | NEW |