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 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1348 "src/profiler/cpu-profiler.cc", | 1348 "src/profiler/cpu-profiler.cc", |
1349 "src/profiler/cpu-profiler.h", | 1349 "src/profiler/cpu-profiler.h", |
1350 "src/profiler/heap-profiler.cc", | 1350 "src/profiler/heap-profiler.cc", |
1351 "src/profiler/heap-profiler.h", | 1351 "src/profiler/heap-profiler.h", |
1352 "src/profiler/heap-snapshot-generator-inl.h", | 1352 "src/profiler/heap-snapshot-generator-inl.h", |
1353 "src/profiler/heap-snapshot-generator.cc", | 1353 "src/profiler/heap-snapshot-generator.cc", |
1354 "src/profiler/heap-snapshot-generator.h", | 1354 "src/profiler/heap-snapshot-generator.h", |
1355 "src/profiler/profile-generator-inl.h", | 1355 "src/profiler/profile-generator-inl.h", |
1356 "src/profiler/profile-generator.cc", | 1356 "src/profiler/profile-generator.cc", |
1357 "src/profiler/profile-generator.h", | 1357 "src/profiler/profile-generator.h", |
| 1358 "src/profiler/profiler-listener.cc", |
| 1359 "src/profiler/profiler-listener.h", |
1358 "src/profiler/sampling-heap-profiler.cc", | 1360 "src/profiler/sampling-heap-profiler.cc", |
1359 "src/profiler/sampling-heap-profiler.h", | 1361 "src/profiler/sampling-heap-profiler.h", |
1360 "src/profiler/strings-storage.cc", | 1362 "src/profiler/strings-storage.cc", |
1361 "src/profiler/strings-storage.h", | 1363 "src/profiler/strings-storage.h", |
1362 "src/profiler/tick-sample.cc", | 1364 "src/profiler/tick-sample.cc", |
1363 "src/profiler/tick-sample.h", | 1365 "src/profiler/tick-sample.h", |
1364 "src/profiler/unbound-queue-inl.h", | 1366 "src/profiler/unbound-queue-inl.h", |
1365 "src/profiler/unbound-queue.h", | 1367 "src/profiler/unbound-queue.h", |
1366 "src/property-descriptor.cc", | 1368 "src/property-descriptor.cc", |
1367 "src/property-descriptor.h", | 1369 "src/property-descriptor.h", |
(...skipping 925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2293 | 2295 |
2294 deps = [ | 2296 deps = [ |
2295 ":fuzzer_support", | 2297 ":fuzzer_support", |
2296 ] | 2298 ] |
2297 | 2299 |
2298 configs = [ ":internal_config" ] | 2300 configs = [ ":internal_config" ] |
2299 } | 2301 } |
2300 | 2302 |
2301 v8_fuzzer("wasm_asmjs_fuzzer") { | 2303 v8_fuzzer("wasm_asmjs_fuzzer") { |
2302 } | 2304 } |
OLD | NEW |