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/host_byteorder.gni") | 8 import("//build/config/host_byteorder.gni") |
9 import("//build/config/mips.gni") | 9 import("//build/config/mips.gni") |
10 import("//build/config/sanitizers/sanitizers.gni") | 10 import("//build/config/sanitizers/sanitizers.gni") |
(...skipping 1719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1730 "src/objects-body-descriptors.h", | 1730 "src/objects-body-descriptors.h", |
1731 "src/objects-debug.cc", | 1731 "src/objects-debug.cc", |
1732 "src/objects-inl.h", | 1732 "src/objects-inl.h", |
1733 "src/objects-printer.cc", | 1733 "src/objects-printer.cc", |
1734 "src/objects.cc", | 1734 "src/objects.cc", |
1735 "src/objects.h", | 1735 "src/objects.h", |
1736 "src/objects/code-cache-inl.h", | 1736 "src/objects/code-cache-inl.h", |
1737 "src/objects/code-cache.h", | 1737 "src/objects/code-cache.h", |
1738 "src/objects/compilation-cache-inl.h", | 1738 "src/objects/compilation-cache-inl.h", |
1739 "src/objects/compilation-cache.h", | 1739 "src/objects/compilation-cache.h", |
| 1740 "src/objects/debug-objects-inl.h", |
| 1741 "src/objects/debug-objects.cc", |
| 1742 "src/objects/debug-objects.h", |
1740 "src/objects/descriptor-array.h", | 1743 "src/objects/descriptor-array.h", |
1741 "src/objects/dictionary.h", | 1744 "src/objects/dictionary.h", |
1742 "src/objects/frame-array-inl.h", | 1745 "src/objects/frame-array-inl.h", |
1743 "src/objects/frame-array.h", | 1746 "src/objects/frame-array.h", |
1744 "src/objects/hash-table.h", | 1747 "src/objects/hash-table.h", |
1745 "src/objects/intl-objects.cc", | 1748 "src/objects/intl-objects.cc", |
1746 "src/objects/intl-objects.h", | 1749 "src/objects/intl-objects.h", |
1747 "src/objects/literal-objects.cc", | 1750 "src/objects/literal-objects.cc", |
1748 "src/objects/literal-objects.h", | 1751 "src/objects/literal-objects.h", |
1749 "src/objects/map-inl.h", | 1752 "src/objects/map-inl.h", |
(...skipping 1530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3280 ] | 3283 ] |
3281 | 3284 |
3282 configs = [ | 3285 configs = [ |
3283 ":external_config", | 3286 ":external_config", |
3284 ":internal_config_base", | 3287 ":internal_config_base", |
3285 ] | 3288 ] |
3286 } | 3289 } |
3287 | 3290 |
3288 v8_fuzzer("wasm_compile_fuzzer") { | 3291 v8_fuzzer("wasm_compile_fuzzer") { |
3289 } | 3292 } |
OLD | NEW |