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 980 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
991 "src/compiler/simplified-lowering.cc", | 991 "src/compiler/simplified-lowering.cc", |
992 "src/compiler/simplified-lowering.h", | 992 "src/compiler/simplified-lowering.h", |
993 "src/compiler/simplified-operator-reducer.cc", | 993 "src/compiler/simplified-operator-reducer.cc", |
994 "src/compiler/simplified-operator-reducer.h", | 994 "src/compiler/simplified-operator-reducer.h", |
995 "src/compiler/simplified-operator.cc", | 995 "src/compiler/simplified-operator.cc", |
996 "src/compiler/simplified-operator.h", | 996 "src/compiler/simplified-operator.h", |
997 "src/compiler/source-position.cc", | 997 "src/compiler/source-position.cc", |
998 "src/compiler/source-position.h", | 998 "src/compiler/source-position.h", |
999 "src/compiler/state-values-utils.cc", | 999 "src/compiler/state-values-utils.cc", |
1000 "src/compiler/state-values-utils.h", | 1000 "src/compiler/state-values-utils.h", |
| 1001 "src/compiler/store-store-elimination.cc", |
| 1002 "src/compiler/store-store-elimination.h", |
1001 "src/compiler/tail-call-optimization.cc", | 1003 "src/compiler/tail-call-optimization.cc", |
1002 "src/compiler/tail-call-optimization.h", | 1004 "src/compiler/tail-call-optimization.h", |
1003 "src/compiler/type-hint-analyzer.cc", | 1005 "src/compiler/type-hint-analyzer.cc", |
1004 "src/compiler/type-hint-analyzer.h", | 1006 "src/compiler/type-hint-analyzer.h", |
1005 "src/compiler/type-hints.cc", | 1007 "src/compiler/type-hints.cc", |
1006 "src/compiler/type-hints.h", | 1008 "src/compiler/type-hints.h", |
1007 "src/compiler/typer.cc", | 1009 "src/compiler/typer.cc", |
1008 "src/compiler/typer.h", | 1010 "src/compiler/typer.h", |
1009 "src/compiler/value-numbering-reducer.cc", | 1011 "src/compiler/value-numbering-reducer.cc", |
1010 "src/compiler/value-numbering-reducer.h", | 1012 "src/compiler/value-numbering-reducer.h", |
(...skipping 1303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2314 | 2316 |
2315 deps = [ | 2317 deps = [ |
2316 ":fuzzer_support", | 2318 ":fuzzer_support", |
2317 ] | 2319 ] |
2318 | 2320 |
2319 configs = [ ":internal_config" ] | 2321 configs = [ ":internal_config" ] |
2320 } | 2322 } |
2321 | 2323 |
2322 v8_fuzzer("wasm_asmjs_fuzzer") { | 2324 v8_fuzzer("wasm_asmjs_fuzzer") { |
2323 } | 2325 } |
OLD | NEW |