| # Copyright 2016 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. |
| |
| import("//garnet/lib/magma/gnbuild/magma.gni") |
| |
| group("libmagma") { |
| public_deps = [ ":libmagma_static" ] |
| } |
| |
| static_library("libmagma_static") { |
| public_deps = [ |
| "$magma_build_root/include:magma_abi", |
| ] |
| |
| sources = [ |
| "magma.cc", |
| ] |
| |
| deps = [ |
| "$magma_build_root/src/magma_util/platform:buffer", |
| "$magma_build_root/src/magma_util/platform:port", |
| "$magma_build_root/src/magma_util/platform:semaphore", |
| "$magma_build_root/src/magma_util/platform:thread", |
| "$magma_build_root/src/magma_util/platform:client_connection", |
| "$magma_build_root/src/magma_util/platform:trace", |
| "$magma_build_root/src/magma_util:command_buffer", |
| ] |
| } |