56f8071f4e
TEST=vm/cc/Splay_* Change-Id: Ica1c2206299968c5d6aabf25c591ad797cae4502 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/383441 Reviewed-by: Alexander Aprelev <aam@google.com> Commit-Queue: Ryan Macnak <rmacnak@google.com>
51 lines
976 B
Plaintext
51 lines
976 B
Plaintext
# Copyright (c) 2018, the Dart project authors. Please see the AUTHORS file
|
|
# for details. All rights reserved. Use of this source code is governed by a
|
|
# BSD-style license that can be found in the LICENSE file.
|
|
|
|
heap_sources = [
|
|
"become.cc",
|
|
"become.h",
|
|
"compactor.cc",
|
|
"compactor.h",
|
|
"freelist.cc",
|
|
"freelist.h",
|
|
"gc_shared.cc",
|
|
"gc_shared.h",
|
|
"heap.cc",
|
|
"heap.h",
|
|
"incremental_compactor.cc",
|
|
"incremental_compactor.h",
|
|
"marker.cc",
|
|
"marker.h",
|
|
"page.cc",
|
|
"page.h",
|
|
"pages.cc",
|
|
"pages.h",
|
|
"pointer_block.cc",
|
|
"pointer_block.h",
|
|
"safepoint.cc",
|
|
"safepoint.h",
|
|
"sampler.cc",
|
|
"sampler.h",
|
|
"scavenger.cc",
|
|
"scavenger.h",
|
|
"spaces.h",
|
|
"sweeper.cc",
|
|
"sweeper.h",
|
|
"verifier.cc",
|
|
"verifier.h",
|
|
"weak_code.cc",
|
|
"weak_code.h",
|
|
"weak_table.cc",
|
|
"weak_table.h",
|
|
]
|
|
|
|
heap_sources_tests = [
|
|
"become_test.cc",
|
|
"freelist_test.cc",
|
|
"heap_test.cc",
|
|
"weak_table_test.cc",
|
|
"safepoint_test.cc",
|
|
"splay_test.cc",
|
|
]
|