| 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 902 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 913 "src/code-stubs.h", | 913 "src/code-stubs.h", |
| 914 "src/codegen.cc", | 914 "src/codegen.cc", |
| 915 "src/codegen.h", | 915 "src/codegen.h", |
| 916 "src/collector.h", | 916 "src/collector.h", |
| 917 "src/compilation-cache.cc", | 917 "src/compilation-cache.cc", |
| 918 "src/compilation-cache.h", | 918 "src/compilation-cache.h", |
| 919 "src/compilation-dependencies.cc", | 919 "src/compilation-dependencies.cc", |
| 920 "src/compilation-dependencies.h", | 920 "src/compilation-dependencies.h", |
| 921 "src/compilation-statistics.cc", | 921 "src/compilation-statistics.cc", |
| 922 "src/compilation-statistics.h", | 922 "src/compilation-statistics.h", |
| 923 "src/compiler-dispatcher/compiler-dispatcher-job.cc", |
| 924 "src/compiler-dispatcher/compiler-dispatcher-job.h", |
| 923 "src/compiler-dispatcher/optimizing-compile-dispatcher.cc", | 925 "src/compiler-dispatcher/optimizing-compile-dispatcher.cc", |
| 924 "src/compiler-dispatcher/optimizing-compile-dispatcher.h", | 926 "src/compiler-dispatcher/optimizing-compile-dispatcher.h", |
| 925 "src/compiler.cc", | 927 "src/compiler.cc", |
| 926 "src/compiler.h", | 928 "src/compiler.h", |
| 927 "src/compiler/access-builder.cc", | 929 "src/compiler/access-builder.cc", |
| 928 "src/compiler/access-builder.h", | 930 "src/compiler/access-builder.h", |
| 929 "src/compiler/access-info.cc", | 931 "src/compiler/access-info.cc", |
| 930 "src/compiler/access-info.h", | 932 "src/compiler/access-info.h", |
| 931 "src/compiler/all-nodes.cc", | 933 "src/compiler/all-nodes.cc", |
| 932 "src/compiler/all-nodes.h", | 934 "src/compiler/all-nodes.h", |
| (...skipping 1570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2503 | 2505 |
| 2504 deps = [ | 2506 deps = [ |
| 2505 ":fuzzer_support", | 2507 ":fuzzer_support", |
| 2506 ] | 2508 ] |
| 2507 | 2509 |
| 2508 configs = [ ":internal_config" ] | 2510 configs = [ ":internal_config" ] |
| 2509 } | 2511 } |
| 2510 | 2512 |
| 2511 v8_fuzzer("wasm_asmjs_fuzzer") { | 2513 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2512 } | 2514 } |
| OLD | NEW |