| OLD | NEW |
| 1 # Copyright 2015 The Chromium Authors. All rights reserved. | 1 # Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 executable("battor_agent") { | 5 executable("battor_agent") { |
| 6 sources = [ | 6 sources = [ |
| 7 "battor_agent_bin.cc", | 7 "battor_agent_bin.cc", |
| 8 ] | 8 ] |
| 9 deps = [ | 9 deps = [ |
| 10 ":battor_agent_lib", | 10 ":battor_agent_lib", |
| 11 "//base", | 11 "//base", |
| 12 "//device/serial", | 12 "//device/serial", |
| 13 "//third_party/mojo/src/mojo/public/c/system:for_shared_library", | 13 "//mojo/public/c/system:for_shared_library", |
| 14 ] | 14 ] |
| 15 } | 15 } |
| 16 | 16 |
| 17 static_library("battor_agent_lib") { | 17 static_library("battor_agent_lib") { |
| 18 sources = [ | 18 sources = [ |
| 19 "battor_agent.cc", | 19 "battor_agent.cc", |
| 20 "battor_agent.h", | 20 "battor_agent.h", |
| 21 ] | 21 ] |
| 22 deps = [ | 22 deps = [ |
| 23 "//base", | 23 "//base", |
| 24 "//device/serial", | 24 "//device/serial", |
| 25 ] | 25 ] |
| 26 } | 26 } |
| OLD | NEW |