blob: 07a4a2c70b80d7cd01ed7b2db71645207057b188 [file] [log] [blame]
# Copyright 2022 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 = [ ":mojo_service_manager" ]
}
pkg_config("target_default") {
pkg_deps = [
"libbrillo",
"libchrome",
"libmojo",
]
}
executable("mojo_service_manager") {
sources = [
"daemon.cc",
"main.cc",
]
configs += [ ":target_default" ]
}