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 1413 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1424 "src/globals.h", | 1424 "src/globals.h", |
1425 "src/handles-inl.h", | 1425 "src/handles-inl.h", |
1426 "src/handles.cc", | 1426 "src/handles.cc", |
1427 "src/handles.h", | 1427 "src/handles.h", |
1428 "src/heap-symbols.h", | 1428 "src/heap-symbols.h", |
1429 "src/heap/array-buffer-tracker-inl.h", | 1429 "src/heap/array-buffer-tracker-inl.h", |
1430 "src/heap/array-buffer-tracker.cc", | 1430 "src/heap/array-buffer-tracker.cc", |
1431 "src/heap/array-buffer-tracker.h", | 1431 "src/heap/array-buffer-tracker.h", |
1432 "src/heap/code-stats.cc", | 1432 "src/heap/code-stats.cc", |
1433 "src/heap/code-stats.h", | 1433 "src/heap/code-stats.h", |
| 1434 "src/heap/concurrent-marking.cc", |
| 1435 "src/heap/concurrent-marking.h", |
1434 "src/heap/embedder-tracing.cc", | 1436 "src/heap/embedder-tracing.cc", |
1435 "src/heap/embedder-tracing.h", | 1437 "src/heap/embedder-tracing.h", |
1436 "src/heap/gc-idle-time-handler.cc", | 1438 "src/heap/gc-idle-time-handler.cc", |
1437 "src/heap/gc-idle-time-handler.h", | 1439 "src/heap/gc-idle-time-handler.h", |
1438 "src/heap/gc-tracer.cc", | 1440 "src/heap/gc-tracer.cc", |
1439 "src/heap/gc-tracer.h", | 1441 "src/heap/gc-tracer.h", |
1440 "src/heap/heap-inl.h", | 1442 "src/heap/heap-inl.h", |
1441 "src/heap/heap.cc", | 1443 "src/heap/heap.cc", |
1442 "src/heap/heap.h", | 1444 "src/heap/heap.h", |
1443 "src/heap/incremental-marking-inl.h", | 1445 "src/heap/incremental-marking-inl.h", |
(...skipping 1680 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3124 ] | 3126 ] |
3125 | 3127 |
3126 configs = [ | 3128 configs = [ |
3127 ":external_config", | 3129 ":external_config", |
3128 ":internal_config_base", | 3130 ":internal_config_base", |
3129 ] | 3131 ] |
3130 } | 3132 } |
3131 | 3133 |
3132 v8_fuzzer("wasm_compile_fuzzer") { | 3134 v8_fuzzer("wasm_compile_fuzzer") { |
3133 } | 3135 } |
OLD | NEW |