| 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 1303 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1314 "src/profiler/cpu-profiler.cc", | 1314 "src/profiler/cpu-profiler.cc", |
| 1315 "src/profiler/cpu-profiler.h", | 1315 "src/profiler/cpu-profiler.h", |
| 1316 "src/profiler/heap-profiler.cc", | 1316 "src/profiler/heap-profiler.cc", |
| 1317 "src/profiler/heap-profiler.h", | 1317 "src/profiler/heap-profiler.h", |
| 1318 "src/profiler/heap-snapshot-generator-inl.h", | 1318 "src/profiler/heap-snapshot-generator-inl.h", |
| 1319 "src/profiler/heap-snapshot-generator.cc", | 1319 "src/profiler/heap-snapshot-generator.cc", |
| 1320 "src/profiler/heap-snapshot-generator.h", | 1320 "src/profiler/heap-snapshot-generator.h", |
| 1321 "src/profiler/profile-generator-inl.h", | 1321 "src/profiler/profile-generator-inl.h", |
| 1322 "src/profiler/profile-generator.cc", | 1322 "src/profiler/profile-generator.cc", |
| 1323 "src/profiler/profile-generator.h", | 1323 "src/profiler/profile-generator.h", |
| 1324 "src/profiler/profiler-listener.cc", | |
| 1325 "src/profiler/profiler-listener.h", | |
| 1326 "src/profiler/sampling-heap-profiler.cc", | 1324 "src/profiler/sampling-heap-profiler.cc", |
| 1327 "src/profiler/sampling-heap-profiler.h", | 1325 "src/profiler/sampling-heap-profiler.h", |
| 1328 "src/profiler/strings-storage.cc", | 1326 "src/profiler/strings-storage.cc", |
| 1329 "src/profiler/strings-storage.h", | 1327 "src/profiler/strings-storage.h", |
| 1330 "src/profiler/tick-sample.cc", | 1328 "src/profiler/tick-sample.cc", |
| 1331 "src/profiler/tick-sample.h", | 1329 "src/profiler/tick-sample.h", |
| 1332 "src/profiler/unbound-queue-inl.h", | 1330 "src/profiler/unbound-queue-inl.h", |
| 1333 "src/profiler/unbound-queue.h", | 1331 "src/profiler/unbound-queue.h", |
| 1334 "src/property-descriptor.cc", | 1332 "src/property-descriptor.cc", |
| 1335 "src/property-descriptor.h", | 1333 "src/property-descriptor.h", |
| (...skipping 912 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2248 | 2246 |
| 2249 deps = [ | 2247 deps = [ |
| 2250 ":fuzzer_support", | 2248 ":fuzzer_support", |
| 2251 ] | 2249 ] |
| 2252 | 2250 |
| 2253 configs = [ ":internal_config" ] | 2251 configs = [ ":internal_config" ] |
| 2254 } | 2252 } |
| 2255 | 2253 |
| 2256 v8_fuzzer("wasm_asmjs_fuzzer") { | 2254 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2257 } | 2255 } |
| OLD | NEW |