blob: 79c00e0c4934217cf3b4b955eb623c74ba4682c4 [file] [log] [blame]
# Copyright 2018 The Chromium OS 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("//common-mk/pkg_config.gni")
group("all") {
deps = [
":goldfishd",
":libgoldfishd",
]
if (use.test) {
deps += [ ":goldfishd_test_runner" ]
}
}
pkg_config("target_defaults") {
pkg_deps = [
"libbrillo",
"libchrome-${libbase_ver}",
]
}
static_library("libgoldfishd") {
configs += [ ":target_defaults" ]
sources = [ "goldfish_library.cc" ]
}
executable("goldfishd") {
configs += [ ":target_defaults" ]
sources = [ "main.cc" ]
deps = [ ":libgoldfishd" ]
}
if (use.test) {
pkg_config("test_config") {
pkg_deps = [ "libchrome-test-${libbase_ver}" ]
}
executable("goldfishd_test_runner") {
configs += [
# //common-mk:test should be at the top. crbug.com/887845
# TODO(crbug.com/887845): Remove this note after library order issue is resolved.
"//common-mk:test",
":target_defaults",
":test_config",
]
sources = [ "goldfish_library_test.cc" ]
deps = [
":libgoldfishd",
"//common-mk/testrunner",
]
}
}