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 1688 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1699 "src/wasm/wasm-module.h", | 1699 "src/wasm/wasm-module.h", |
1700 "src/wasm/wasm-opcodes.cc", | 1700 "src/wasm/wasm-opcodes.cc", |
1701 "src/wasm/wasm-opcodes.h", | 1701 "src/wasm/wasm-opcodes.h", |
1702 "src/wasm/wasm-result.cc", | 1702 "src/wasm/wasm-result.cc", |
1703 "src/wasm/wasm-result.h", | 1703 "src/wasm/wasm-result.h", |
1704 "src/zone/accounting-allocator.cc", | 1704 "src/zone/accounting-allocator.cc", |
1705 "src/zone/accounting-allocator.h", | 1705 "src/zone/accounting-allocator.h", |
1706 "src/zone/zone-allocator.h", | 1706 "src/zone/zone-allocator.h", |
1707 "src/zone/zone-allocator.h", | 1707 "src/zone/zone-allocator.h", |
1708 "src/zone/zone-containers.h", | 1708 "src/zone/zone-containers.h", |
| 1709 "src/zone/zone-handle-set.h", |
1709 "src/zone/zone-segment.h", | 1710 "src/zone/zone-segment.h", |
1710 "src/zone/zone.cc", | 1711 "src/zone/zone.cc", |
1711 "src/zone/zone.h", | 1712 "src/zone/zone.h", |
1712 ] | 1713 ] |
1713 | 1714 |
1714 if (v8_current_cpu == "x86") { | 1715 if (v8_current_cpu == "x86") { |
1715 sources += [ ### gcmole(arch:ia32) ### | 1716 sources += [ ### gcmole(arch:ia32) ### |
1716 "src/builtins/ia32/builtins-ia32.cc", | 1717 "src/builtins/ia32/builtins-ia32.cc", |
1717 "src/compiler/ia32/code-generator-ia32.cc", | 1718 "src/compiler/ia32/code-generator-ia32.cc", |
1718 "src/compiler/ia32/instruction-codes-ia32.h", | 1719 "src/compiler/ia32/instruction-codes-ia32.h", |
(...skipping 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2933 ] | 2934 ] |
2934 | 2935 |
2935 configs = [ | 2936 configs = [ |
2936 ":external_config", | 2937 ":external_config", |
2937 ":internal_config_base", | 2938 ":internal_config_base", |
2938 ] | 2939 ] |
2939 } | 2940 } |
2940 | 2941 |
2941 v8_fuzzer("wasm_data_section_fuzzer") { | 2942 v8_fuzzer("wasm_data_section_fuzzer") { |
2942 } | 2943 } |
OLD | NEW |