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 1762 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1773 "src/wasm/wasm-result.cc", | 1773 "src/wasm/wasm-result.cc", |
1774 "src/wasm/wasm-result.h", | 1774 "src/wasm/wasm-result.h", |
1775 "src/wasm/wasm-text.cc", | 1775 "src/wasm/wasm-text.cc", |
1776 "src/wasm/wasm-text.h", | 1776 "src/wasm/wasm-text.h", |
1777 "src/zone/accounting-allocator.cc", | 1777 "src/zone/accounting-allocator.cc", |
1778 "src/zone/accounting-allocator.h", | 1778 "src/zone/accounting-allocator.h", |
1779 "src/zone/zone-allocator.h", | 1779 "src/zone/zone-allocator.h", |
1780 "src/zone/zone-allocator.h", | 1780 "src/zone/zone-allocator.h", |
1781 "src/zone/zone-chunk-list.h", | 1781 "src/zone/zone-chunk-list.h", |
1782 "src/zone/zone-containers.h", | 1782 "src/zone/zone-containers.h", |
| 1783 "src/zone/zone-handle-set.h", |
1783 "src/zone/zone-segment.cc", | 1784 "src/zone/zone-segment.cc", |
1784 "src/zone/zone-segment.h", | 1785 "src/zone/zone-segment.h", |
1785 "src/zone/zone.cc", | 1786 "src/zone/zone.cc", |
1786 "src/zone/zone.h", | 1787 "src/zone/zone.h", |
1787 ] | 1788 ] |
1788 | 1789 |
1789 if (v8_current_cpu == "x86") { | 1790 if (v8_current_cpu == "x86") { |
1790 sources += [ ### gcmole(arch:ia32) ### | 1791 sources += [ ### gcmole(arch:ia32) ### |
1791 "src/builtins/ia32/builtins-ia32.cc", | 1792 "src/builtins/ia32/builtins-ia32.cc", |
1792 "src/compiler/ia32/code-generator-ia32.cc", | 1793 "src/compiler/ia32/code-generator-ia32.cc", |
(...skipping 1211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3004 ] | 3005 ] |
3005 | 3006 |
3006 configs = [ | 3007 configs = [ |
3007 ":external_config", | 3008 ":external_config", |
3008 ":internal_config_base", | 3009 ":internal_config_base", |
3009 ] | 3010 ] |
3010 } | 3011 } |
3011 | 3012 |
3012 v8_fuzzer("wasm_data_section_fuzzer") { | 3013 v8_fuzzer("wasm_data_section_fuzzer") { |
3013 } | 3014 } |
OLD | NEW |