blob: c808409973393e2cbf4105c6db9233f8538e498d [file] [log] [blame]
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
executable("battor_agent") {
sources = [
"battor_agent_bin.cc",
]
deps = [
":battor_agent_lib",
"//base",
"//device/serial",
"//mojo/public/c/system:for_shared_library",
]
}
static_library("battor_agent_lib") {
sources = [
"battor_agent.cc",
"battor_agent.h",
"battor_error.h",
]
deps = [
"//base",
"//device/serial",
]
}