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