| # Copyright 2020 The Fuchsia Authors |
| # |
| # Use of this source code is governed by a MIT-style |
| # license that can be found in the LICENSE file or at |
| # https://opensource.org/licenses/MIT |
| |
| import("//build/test.gni") |
| |
| if (is_host) { |
| test("tests") { |
| output_name = "cmpctmalloc_test" |
| sources = [ |
| "cmpctmalloc_test.cc", |
| "page_manager.cc", |
| ] |
| deps = [ |
| "//zircon/kernel/lib/heap/cmpctmalloc", |
| "//zircon/public/lib/zxtest", |
| ] |
| include_dirs = [ |
| "//zircon/kernel/lib/heap/cmpctmalloc/include/lib", |
| "//zircon/kernel/lib/heap/include", |
| ] |
| } |
| } |