| 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 1313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1324 "src/profiler/cpu-profiler.cc", | 1324 "src/profiler/cpu-profiler.cc", |
| 1325 "src/profiler/cpu-profiler.h", | 1325 "src/profiler/cpu-profiler.h", |
| 1326 "src/profiler/heap-profiler.cc", | 1326 "src/profiler/heap-profiler.cc", |
| 1327 "src/profiler/heap-profiler.h", | 1327 "src/profiler/heap-profiler.h", |
| 1328 "src/profiler/heap-snapshot-generator-inl.h", | 1328 "src/profiler/heap-snapshot-generator-inl.h", |
| 1329 "src/profiler/heap-snapshot-generator.cc", | 1329 "src/profiler/heap-snapshot-generator.cc", |
| 1330 "src/profiler/heap-snapshot-generator.h", | 1330 "src/profiler/heap-snapshot-generator.h", |
| 1331 "src/profiler/profile-generator-inl.h", | 1331 "src/profiler/profile-generator-inl.h", |
| 1332 "src/profiler/profile-generator.cc", | 1332 "src/profiler/profile-generator.cc", |
| 1333 "src/profiler/profile-generator.h", | 1333 "src/profiler/profile-generator.h", |
| 1334 "src/profiler/profiler-listener.cc", |
| 1335 "src/profiler/profiler-listener.h", |
| 1334 "src/profiler/sampling-heap-profiler.cc", | 1336 "src/profiler/sampling-heap-profiler.cc", |
| 1335 "src/profiler/sampling-heap-profiler.h", | 1337 "src/profiler/sampling-heap-profiler.h", |
| 1336 "src/profiler/strings-storage.cc", | 1338 "src/profiler/strings-storage.cc", |
| 1337 "src/profiler/strings-storage.h", | 1339 "src/profiler/strings-storage.h", |
| 1338 "src/profiler/tick-sample.cc", | 1340 "src/profiler/tick-sample.cc", |
| 1339 "src/profiler/tick-sample.h", | 1341 "src/profiler/tick-sample.h", |
| 1340 "src/profiler/unbound-queue-inl.h", | 1342 "src/profiler/unbound-queue-inl.h", |
| 1341 "src/profiler/unbound-queue.h", | 1343 "src/profiler/unbound-queue.h", |
| 1342 "src/property-descriptor.cc", | 1344 "src/property-descriptor.cc", |
| 1343 "src/property-descriptor.h", | 1345 "src/property-descriptor.h", |
| (...skipping 958 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2302 | 2304 |
| 2303 deps = [ | 2305 deps = [ |
| 2304 ":fuzzer_support", | 2306 ":fuzzer_support", |
| 2305 ] | 2307 ] |
| 2306 | 2308 |
| 2307 configs = [ ":internal_config" ] | 2309 configs = [ ":internal_config" ] |
| 2308 } | 2310 } |
| 2309 | 2311 |
| 2310 v8_fuzzer("wasm_asmjs_fuzzer") { | 2312 v8_fuzzer("wasm_asmjs_fuzzer") { |
| 2311 } | 2313 } |
| OLD | NEW |