| 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 1211 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1222 "src/heap/heap-inl.h", | 1222 "src/heap/heap-inl.h", |
| 1223 "src/heap/heap.cc", | 1223 "src/heap/heap.cc", |
| 1224 "src/heap/heap.h", | 1224 "src/heap/heap.h", |
| 1225 "src/heap/incremental-marking-job.cc", | 1225 "src/heap/incremental-marking-job.cc", |
| 1226 "src/heap/incremental-marking-job.h", | 1226 "src/heap/incremental-marking-job.h", |
| 1227 "src/heap/incremental-marking.cc", | 1227 "src/heap/incremental-marking.cc", |
| 1228 "src/heap/incremental-marking.h", | 1228 "src/heap/incremental-marking.h", |
| 1229 "src/heap/mark-compact-inl.h", | 1229 "src/heap/mark-compact-inl.h", |
| 1230 "src/heap/mark-compact.cc", | 1230 "src/heap/mark-compact.cc", |
| 1231 "src/heap/mark-compact.h", | 1231 "src/heap/mark-compact.h", |
| 1232 "src/heap/marking.h", |
| 1232 "src/heap/memory-reducer.cc", | 1233 "src/heap/memory-reducer.cc", |
| 1233 "src/heap/memory-reducer.h", | 1234 "src/heap/memory-reducer.h", |
| 1234 "src/heap/object-stats.cc", | 1235 "src/heap/object-stats.cc", |
| 1235 "src/heap/object-stats.h", | 1236 "src/heap/object-stats.h", |
| 1236 "src/heap/objects-visiting-inl.h", | 1237 "src/heap/objects-visiting-inl.h", |
| 1237 "src/heap/objects-visiting.cc", | 1238 "src/heap/objects-visiting.cc", |
| 1238 "src/heap/objects-visiting.h", | 1239 "src/heap/objects-visiting.h", |
| 1239 "src/heap/page-parallel-job.h", | 1240 "src/heap/page-parallel-job.h", |
| 1240 "src/heap/remembered-set.cc", | 1241 "src/heap/remembered-set.cc", |
| 1241 "src/heap/remembered-set.h", | 1242 "src/heap/remembered-set.h", |
| (...skipping 1153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2395 | 2396 |
| 2396 deps = [ | 2397 deps = [ |
| 2397 ":fuzzer_support", | 2398 ":fuzzer_support", |
| 2398 ] | 2399 ] |
| 2399 | 2400 |
| 2400 configs = [ ":internal_config" ] | 2401 configs = [ ":internal_config" ] |
| 2401 } | 2402 } |
| 2402 | 2403 |
| 2403 v8_fuzzer("wasm_asmjs_fuzzer") { | 2404 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2404 } | 2405 } |
| OLD | NEW |