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 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1252 "src/interpreter/control-flow-builders.cc", | 1252 "src/interpreter/control-flow-builders.cc", |
1253 "src/interpreter/control-flow-builders.h", | 1253 "src/interpreter/control-flow-builders.h", |
1254 "src/interpreter/handler-table-builder.cc", | 1254 "src/interpreter/handler-table-builder.cc", |
1255 "src/interpreter/handler-table-builder.h", | 1255 "src/interpreter/handler-table-builder.h", |
1256 "src/interpreter/interpreter-assembler.cc", | 1256 "src/interpreter/interpreter-assembler.cc", |
1257 "src/interpreter/interpreter-assembler.h", | 1257 "src/interpreter/interpreter-assembler.h", |
1258 "src/interpreter/interpreter-intrinsics.cc", | 1258 "src/interpreter/interpreter-intrinsics.cc", |
1259 "src/interpreter/interpreter-intrinsics.h", | 1259 "src/interpreter/interpreter-intrinsics.h", |
1260 "src/interpreter/interpreter.cc", | 1260 "src/interpreter/interpreter.cc", |
1261 "src/interpreter/interpreter.h", | 1261 "src/interpreter/interpreter.h", |
1262 "src/interpreter/source-position-table.cc", | |
1263 "src/interpreter/source-position-table.h", | |
1264 "src/isolate-inl.h", | 1262 "src/isolate-inl.h", |
1265 "src/isolate.cc", | 1263 "src/isolate.cc", |
1266 "src/isolate.h", | 1264 "src/isolate.h", |
1267 "src/json-parser.cc", | 1265 "src/json-parser.cc", |
1268 "src/json-parser.h", | 1266 "src/json-parser.h", |
1269 "src/json-stringifier.cc", | 1267 "src/json-stringifier.cc", |
1270 "src/json-stringifier.h", | 1268 "src/json-stringifier.h", |
1271 "src/keys.cc", | 1269 "src/keys.cc", |
1272 "src/keys.h", | 1270 "src/keys.h", |
1273 "src/layout-descriptor-inl.h", | 1271 "src/layout-descriptor-inl.h", |
(...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1426 "src/snapshot/serializer-common.cc", | 1424 "src/snapshot/serializer-common.cc", |
1427 "src/snapshot/serializer-common.h", | 1425 "src/snapshot/serializer-common.h", |
1428 "src/snapshot/serializer.cc", | 1426 "src/snapshot/serializer.cc", |
1429 "src/snapshot/serializer.h", | 1427 "src/snapshot/serializer.h", |
1430 "src/snapshot/snapshot-common.cc", | 1428 "src/snapshot/snapshot-common.cc", |
1431 "src/snapshot/snapshot-source-sink.cc", | 1429 "src/snapshot/snapshot-source-sink.cc", |
1432 "src/snapshot/snapshot-source-sink.h", | 1430 "src/snapshot/snapshot-source-sink.h", |
1433 "src/snapshot/snapshot.h", | 1431 "src/snapshot/snapshot.h", |
1434 "src/snapshot/startup-serializer.cc", | 1432 "src/snapshot/startup-serializer.cc", |
1435 "src/snapshot/startup-serializer.h", | 1433 "src/snapshot/startup-serializer.h", |
| 1434 "src/source-position-table.cc", |
| 1435 "src/source-position-table.h", |
1436 "src/source-position.h", | 1436 "src/source-position.h", |
1437 "src/splay-tree-inl.h", | 1437 "src/splay-tree-inl.h", |
1438 "src/splay-tree.h", | 1438 "src/splay-tree.h", |
1439 "src/startup-data-util.cc", | 1439 "src/startup-data-util.cc", |
1440 "src/startup-data-util.h", | 1440 "src/startup-data-util.h", |
1441 "src/string-builder.cc", | 1441 "src/string-builder.cc", |
1442 "src/string-builder.h", | 1442 "src/string-builder.h", |
1443 "src/string-search.h", | 1443 "src/string-search.h", |
1444 "src/string-stream.cc", | 1444 "src/string-stream.cc", |
1445 "src/string-stream.h", | 1445 "src/string-stream.h", |
(...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2313 | 2313 |
2314 deps = [ | 2314 deps = [ |
2315 ":fuzzer_support", | 2315 ":fuzzer_support", |
2316 ] | 2316 ] |
2317 | 2317 |
2318 configs = [ ":internal_config" ] | 2318 configs = [ ":internal_config" ] |
2319 } | 2319 } |
2320 | 2320 |
2321 v8_fuzzer("wasm_asmjs_fuzzer") { | 2321 v8_fuzzer("wasm_asmjs_fuzzer") { |
2322 } | 2322 } |
OLD | NEW |