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 1736 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1747 "src/wasm/wasm-module-builder.cc", | 1747 "src/wasm/wasm-module-builder.cc", |
1748 "src/wasm/wasm-module-builder.h", | 1748 "src/wasm/wasm-module-builder.h", |
1749 "src/wasm/wasm-module.cc", | 1749 "src/wasm/wasm-module.cc", |
1750 "src/wasm/wasm-module.h", | 1750 "src/wasm/wasm-module.h", |
1751 "src/wasm/wasm-objects.cc", | 1751 "src/wasm/wasm-objects.cc", |
1752 "src/wasm/wasm-objects.h", | 1752 "src/wasm/wasm-objects.h", |
1753 "src/wasm/wasm-opcodes.cc", | 1753 "src/wasm/wasm-opcodes.cc", |
1754 "src/wasm/wasm-opcodes.h", | 1754 "src/wasm/wasm-opcodes.h", |
1755 "src/wasm/wasm-result.cc", | 1755 "src/wasm/wasm-result.cc", |
1756 "src/wasm/wasm-result.h", | 1756 "src/wasm/wasm-result.h", |
| 1757 "src/wasm/wasm-text.cc", |
| 1758 "src/wasm/wasm-text.h", |
1757 "src/zone/accounting-allocator.cc", | 1759 "src/zone/accounting-allocator.cc", |
1758 "src/zone/accounting-allocator.h", | 1760 "src/zone/accounting-allocator.h", |
1759 "src/zone/zone-allocator.h", | 1761 "src/zone/zone-allocator.h", |
1760 "src/zone/zone-allocator.h", | 1762 "src/zone/zone-allocator.h", |
1761 "src/zone/zone-chunk-list.h", | 1763 "src/zone/zone-chunk-list.h", |
1762 "src/zone/zone-containers.h", | 1764 "src/zone/zone-containers.h", |
1763 "src/zone/zone-segment.cc", | 1765 "src/zone/zone-segment.cc", |
1764 "src/zone/zone-segment.h", | 1766 "src/zone/zone-segment.h", |
1765 "src/zone/zone.cc", | 1767 "src/zone/zone.cc", |
1766 "src/zone/zone.h", | 1768 "src/zone/zone.h", |
(...skipping 1234 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3001 ] | 3003 ] |
3002 | 3004 |
3003 configs = [ | 3005 configs = [ |
3004 ":external_config", | 3006 ":external_config", |
3005 ":internal_config_base", | 3007 ":internal_config_base", |
3006 ] | 3008 ] |
3007 } | 3009 } |
3008 | 3010 |
3009 v8_fuzzer("wasm_data_section_fuzzer") { | 3011 v8_fuzzer("wasm_data_section_fuzzer") { |
3010 } | 3012 } |
OLD | NEW |