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 970 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
981 "src/compiler/simplified-lowering.cc", | 981 "src/compiler/simplified-lowering.cc", |
982 "src/compiler/simplified-lowering.h", | 982 "src/compiler/simplified-lowering.h", |
983 "src/compiler/simplified-operator-reducer.cc", | 983 "src/compiler/simplified-operator-reducer.cc", |
984 "src/compiler/simplified-operator-reducer.h", | 984 "src/compiler/simplified-operator-reducer.h", |
985 "src/compiler/simplified-operator.cc", | 985 "src/compiler/simplified-operator.cc", |
986 "src/compiler/simplified-operator.h", | 986 "src/compiler/simplified-operator.h", |
987 "src/compiler/source-position.cc", | 987 "src/compiler/source-position.cc", |
988 "src/compiler/source-position.h", | 988 "src/compiler/source-position.h", |
989 "src/compiler/state-values-utils.cc", | 989 "src/compiler/state-values-utils.cc", |
990 "src/compiler/state-values-utils.h", | 990 "src/compiler/state-values-utils.h", |
| 991 "src/compiler/store-store-elimination.cc", |
| 992 "src/compiler/store-store-elimination.h", |
991 "src/compiler/tail-call-optimization.cc", | 993 "src/compiler/tail-call-optimization.cc", |
992 "src/compiler/tail-call-optimization.h", | 994 "src/compiler/tail-call-optimization.h", |
993 "src/compiler/type-hint-analyzer.cc", | 995 "src/compiler/type-hint-analyzer.cc", |
994 "src/compiler/type-hint-analyzer.h", | 996 "src/compiler/type-hint-analyzer.h", |
995 "src/compiler/type-hints.cc", | 997 "src/compiler/type-hints.cc", |
996 "src/compiler/type-hints.h", | 998 "src/compiler/type-hints.h", |
997 "src/compiler/typer.cc", | 999 "src/compiler/typer.cc", |
998 "src/compiler/typer.h", | 1000 "src/compiler/typer.h", |
999 "src/compiler/value-numbering-reducer.cc", | 1001 "src/compiler/value-numbering-reducer.cc", |
1000 "src/compiler/value-numbering-reducer.h", | 1002 "src/compiler/value-numbering-reducer.h", |
(...skipping 1249 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2250 | 2252 |
2251 deps = [ | 2253 deps = [ |
2252 ":fuzzer_support", | 2254 ":fuzzer_support", |
2253 ] | 2255 ] |
2254 | 2256 |
2255 configs = [ ":internal_config" ] | 2257 configs = [ ":internal_config" ] |
2256 } | 2258 } |
2257 | 2259 |
2258 v8_fuzzer("wasm_asmjs_fuzzer") { | 2260 v8_fuzzer("wasm_asmjs_fuzzer") { |
2259 } | 2261 } |
OLD | NEW |