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 ] | 12 ] |
12 } | 13 } |
13 | 14 |
14 static_library("battor_agent_lib") { | 15 static_library("battor_agent_lib") { |
15 sources = [ | 16 sources = [ |
16 "battor_agent.cc", | 17 "battor_agent.cc", |
17 "battor_agent.h", | 18 "battor_agent.h", |
18 ] | 19 ] |
19 deps = [ | 20 deps = [ |
20 "//base", | 21 "//base", |
21 ] | 22 ] |
22 } | 23 } |
OLD | NEW |