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/mips.gni") | 7 import("//build/config/mips.gni") |
8 import("//build/config/sanitizers/sanitizers.gni") | 8 import("//build/config/sanitizers/sanitizers.gni") |
9 | 9 |
10 if (is_android) { | 10 if (is_android) { |
(...skipping 719 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
730 "include/v8.h", | 730 "include/v8.h", |
731 "include/v8config.h", | 731 "include/v8config.h", |
732 "src/accessors.cc", | 732 "src/accessors.cc", |
733 "src/accessors.h", | 733 "src/accessors.h", |
734 "src/address-map.cc", | 734 "src/address-map.cc", |
735 "src/address-map.h", | 735 "src/address-map.h", |
736 "src/allocation-site-scopes.cc", | 736 "src/allocation-site-scopes.cc", |
737 "src/allocation-site-scopes.h", | 737 "src/allocation-site-scopes.h", |
738 "src/allocation.cc", | 738 "src/allocation.cc", |
739 "src/allocation.h", | 739 "src/allocation.h", |
| 740 "src/api-arguments-inl.h", |
740 "src/api-arguments.cc", | 741 "src/api-arguments.cc", |
741 "src/api-arguments.h", | 742 "src/api-arguments.h", |
742 "src/api-experimental.cc", | 743 "src/api-experimental.cc", |
743 "src/api-experimental.h", | 744 "src/api-experimental.h", |
744 "src/api-natives.cc", | 745 "src/api-natives.cc", |
745 "src/api-natives.h", | 746 "src/api-natives.h", |
746 "src/api.cc", | 747 "src/api.cc", |
747 "src/api.h", | 748 "src/api.h", |
748 "src/arguments.cc", | 749 "src/arguments.cc", |
749 "src/arguments.h", | 750 "src/arguments.h", |
(...skipping 1519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2269 ] | 2270 ] |
2270 | 2271 |
2271 deps = [ | 2272 deps = [ |
2272 ":fuzzer_support", | 2273 ":fuzzer_support", |
2273 ] | 2274 ] |
2274 | 2275 |
2275 configs = [ ":internal_config" ] | 2276 configs = [ ":internal_config" ] |
2276 } | 2277 } |
2277 | 2278 |
2278 v8_fuzzer("wasm_asmjs_fuzzer") {} | 2279 v8_fuzzer("wasm_asmjs_fuzzer") {} |
OLD | NEW |