| # Copyright 2019 The Fuchsia Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| zx_library("devmgr-integration-test") { |
| sdk = "shared" |
| sdk_headers = [ "lib/devmgr-integration-test/fixture.h" ] |
| |
| # TODO: testonly = true |
| shared = true |
| sources = [ |
| "dir-watcher.cc", |
| "file-wait.cc", |
| "launcher.cc", |
| ] |
| public_deps = [ |
| # <lib/devmgr-integration-test/fixture.h> has #include <lib/devmgr-launcher/launch.h>. |
| "$zx/system/ulib/devmgr-launcher:headers", |
| |
| # <lib/devmgr-integration-test/fixture.h> has #include <fbl/unique_fd.h>. |
| "$zx/system/ulib/fbl:headers", |
| |
| # <lib/devmgr-integration-test/fixture.h> has #include <lib/fit/function.h>. |
| "$zx/system/ulib/fit:headers", |
| |
| # <lib/devmgr-integration-test/fixture.h> has #include <lib/zx/channel.h>. |
| "$zx/system/ulib/zx:headers", |
| ] |
| deps = [ |
| "$zx/system/fidl/fuchsia-boot:c", |
| "$zx/system/fidl/fuchsia-process:c", |
| "$zx/system/fidl/fuchsia-scheduler:c", |
| "$zx/system/ulib/async-loop:async-loop-cpp", |
| "$zx/system/ulib/async-loop:async-loop-default.static", |
| "$zx/system/ulib/ddk", |
| "$zx/system/ulib/devmgr-launcher", |
| "$zx/system/ulib/fdio", |
| "$zx/system/ulib/fidl-async", |
| "$zx/system/ulib/fs", |
| "$zx/system/ulib/fzl", |
| "$zx/system/ulib/zircon", |
| "$zx/system/ulib/zx", |
| ] |
| configs += [ "$zx_build/public/gn/config:static-libc++" ] |
| } |