| 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 1140 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1151 "src/global-handles.cc", | 1151 "src/global-handles.cc", |
| 1152 "src/global-handles.h", | 1152 "src/global-handles.h", |
| 1153 "src/globals.h", | 1153 "src/globals.h", |
| 1154 "src/handles-inl.h", | 1154 "src/handles-inl.h", |
| 1155 "src/handles.cc", | 1155 "src/handles.cc", |
| 1156 "src/handles.h", | 1156 "src/handles.h", |
| 1157 "src/heap-symbols.h", | 1157 "src/heap-symbols.h", |
| 1158 "src/heap/array-buffer-tracker-inl.h", | 1158 "src/heap/array-buffer-tracker-inl.h", |
| 1159 "src/heap/array-buffer-tracker.cc", | 1159 "src/heap/array-buffer-tracker.cc", |
| 1160 "src/heap/array-buffer-tracker.h", | 1160 "src/heap/array-buffer-tracker.h", |
| 1161 "src/heap/code-stats.cc", |
| 1162 "src/heap/code-stats.h", |
| 1161 "src/heap/gc-idle-time-handler.cc", | 1163 "src/heap/gc-idle-time-handler.cc", |
| 1162 "src/heap/gc-idle-time-handler.h", | 1164 "src/heap/gc-idle-time-handler.h", |
| 1163 "src/heap/gc-tracer.cc", | 1165 "src/heap/gc-tracer.cc", |
| 1164 "src/heap/gc-tracer.h", | 1166 "src/heap/gc-tracer.h", |
| 1165 "src/heap/heap-inl.h", | 1167 "src/heap/heap-inl.h", |
| 1166 "src/heap/heap.cc", | 1168 "src/heap/heap.cc", |
| 1167 "src/heap/heap.h", | 1169 "src/heap/heap.h", |
| 1168 "src/heap/incremental-marking-job.cc", | 1170 "src/heap/incremental-marking-job.cc", |
| 1169 "src/heap/incremental-marking-job.h", | 1171 "src/heap/incremental-marking-job.h", |
| 1170 "src/heap/incremental-marking.cc", | 1172 "src/heap/incremental-marking.cc", |
| (...skipping 1079 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 |