| 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 1130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1141 "src/compiler/type-cache.cc", | 1141 "src/compiler/type-cache.cc", |
| 1142 "src/compiler/type-cache.h", | 1142 "src/compiler/type-cache.h", |
| 1143 "src/compiler/type-hint-analyzer.cc", | 1143 "src/compiler/type-hint-analyzer.cc", |
| 1144 "src/compiler/type-hint-analyzer.h", | 1144 "src/compiler/type-hint-analyzer.h", |
| 1145 "src/compiler/type-hints.cc", | 1145 "src/compiler/type-hints.cc", |
| 1146 "src/compiler/type-hints.h", | 1146 "src/compiler/type-hints.h", |
| 1147 "src/compiler/typed-optimization.cc", | 1147 "src/compiler/typed-optimization.cc", |
| 1148 "src/compiler/typed-optimization.h", | 1148 "src/compiler/typed-optimization.h", |
| 1149 "src/compiler/typer.cc", | 1149 "src/compiler/typer.cc", |
| 1150 "src/compiler/typer.h", | 1150 "src/compiler/typer.h", |
| 1151 "src/compiler/types.cc", |
| 1152 "src/compiler/types.h", |
| 1151 "src/compiler/unwinding-info-writer.h", | 1153 "src/compiler/unwinding-info-writer.h", |
| 1152 "src/compiler/value-numbering-reducer.cc", | 1154 "src/compiler/value-numbering-reducer.cc", |
| 1153 "src/compiler/value-numbering-reducer.h", | 1155 "src/compiler/value-numbering-reducer.h", |
| 1154 "src/compiler/verifier.cc", | 1156 "src/compiler/verifier.cc", |
| 1155 "src/compiler/verifier.h", | 1157 "src/compiler/verifier.h", |
| 1156 "src/compiler/wasm-compiler.cc", | 1158 "src/compiler/wasm-compiler.cc", |
| 1157 "src/compiler/wasm-compiler.h", | 1159 "src/compiler/wasm-compiler.h", |
| 1158 "src/compiler/wasm-linkage.cc", | 1160 "src/compiler/wasm-linkage.cc", |
| 1159 "src/compiler/zone-pool.cc", | 1161 "src/compiler/zone-pool.cc", |
| 1160 "src/compiler/zone-pool.h", | 1162 "src/compiler/zone-pool.h", |
| (...skipping 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1611 "src/tracing/trace-event.cc", | 1613 "src/tracing/trace-event.cc", |
| 1612 "src/tracing/trace-event.h", | 1614 "src/tracing/trace-event.h", |
| 1613 "src/transitions-inl.h", | 1615 "src/transitions-inl.h", |
| 1614 "src/transitions.cc", | 1616 "src/transitions.cc", |
| 1615 "src/transitions.h", | 1617 "src/transitions.h", |
| 1616 "src/type-feedback-vector-inl.h", | 1618 "src/type-feedback-vector-inl.h", |
| 1617 "src/type-feedback-vector.cc", | 1619 "src/type-feedback-vector.cc", |
| 1618 "src/type-feedback-vector.h", | 1620 "src/type-feedback-vector.h", |
| 1619 "src/type-info.cc", | 1621 "src/type-info.cc", |
| 1620 "src/type-info.h", | 1622 "src/type-info.h", |
| 1621 "src/types.cc", | |
| 1622 "src/types.h", | |
| 1623 "src/unicode-cache-inl.h", | 1623 "src/unicode-cache-inl.h", |
| 1624 "src/unicode-cache.h", | 1624 "src/unicode-cache.h", |
| 1625 "src/unicode-decoder.cc", | 1625 "src/unicode-decoder.cc", |
| 1626 "src/unicode-decoder.h", | 1626 "src/unicode-decoder.h", |
| 1627 "src/unicode-inl.h", | 1627 "src/unicode-inl.h", |
| 1628 "src/unicode.cc", | 1628 "src/unicode.cc", |
| 1629 "src/unicode.h", | 1629 "src/unicode.h", |
| 1630 "src/uri.cc", | 1630 "src/uri.cc", |
| 1631 "src/uri.h", | 1631 "src/uri.h", |
| 1632 "src/utils-inl.h", | 1632 "src/utils-inl.h", |
| (...skipping 966 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2599 | 2599 |
| 2600 deps = [ | 2600 deps = [ |
| 2601 ":fuzzer_support", | 2601 ":fuzzer_support", |
| 2602 ] | 2602 ] |
| 2603 | 2603 |
| 2604 configs = [ ":internal_config" ] | 2604 configs = [ ":internal_config" ] |
| 2605 } | 2605 } |
| 2606 | 2606 |
| 2607 v8_fuzzer("wasm_code_fuzzer") { | 2607 v8_fuzzer("wasm_code_fuzzer") { |
| 2608 } | 2608 } |
| OLD | NEW |