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 1550 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1561 "src/globals.h", | 1561 "src/globals.h", |
1562 "src/handles-inl.h", | 1562 "src/handles-inl.h", |
1563 "src/handles.cc", | 1563 "src/handles.cc", |
1564 "src/handles.h", | 1564 "src/handles.h", |
1565 "src/heap-symbols.h", | 1565 "src/heap-symbols.h", |
1566 "src/heap/array-buffer-tracker-inl.h", | 1566 "src/heap/array-buffer-tracker-inl.h", |
1567 "src/heap/array-buffer-tracker.cc", | 1567 "src/heap/array-buffer-tracker.cc", |
1568 "src/heap/array-buffer-tracker.h", | 1568 "src/heap/array-buffer-tracker.h", |
1569 "src/heap/code-stats.cc", | 1569 "src/heap/code-stats.cc", |
1570 "src/heap/code-stats.h", | 1570 "src/heap/code-stats.h", |
| 1571 "src/heap/concurrent-marking-deque.h", |
1571 "src/heap/concurrent-marking.cc", | 1572 "src/heap/concurrent-marking.cc", |
1572 "src/heap/concurrent-marking.h", | 1573 "src/heap/concurrent-marking.h", |
1573 "src/heap/embedder-tracing.cc", | 1574 "src/heap/embedder-tracing.cc", |
1574 "src/heap/embedder-tracing.h", | 1575 "src/heap/embedder-tracing.h", |
1575 "src/heap/gc-idle-time-handler.cc", | 1576 "src/heap/gc-idle-time-handler.cc", |
1576 "src/heap/gc-idle-time-handler.h", | 1577 "src/heap/gc-idle-time-handler.h", |
1577 "src/heap/gc-tracer.cc", | 1578 "src/heap/gc-tracer.cc", |
1578 "src/heap/gc-tracer.h", | 1579 "src/heap/gc-tracer.h", |
1579 "src/heap/heap-inl.h", | 1580 "src/heap/heap-inl.h", |
1580 "src/heap/heap.cc", | 1581 "src/heap/heap.cc", |
(...skipping 1647 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3228 ] | 3229 ] |
3229 | 3230 |
3230 configs = [ | 3231 configs = [ |
3231 ":external_config", | 3232 ":external_config", |
3232 ":internal_config_base", | 3233 ":internal_config_base", |
3233 ] | 3234 ] |
3234 } | 3235 } |
3235 | 3236 |
3236 v8_fuzzer("wasm_compile_fuzzer") { | 3237 v8_fuzzer("wasm_compile_fuzzer") { |
3237 } | 3238 } |
OLD | NEW |