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