Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4)

Side by Side Diff: tools/battor_agent/BUILD.gn

Issue 1407033008: Makes the BattOrAgent asynchronous (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added //base dependency to bin Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | tools/battor_agent/battor_agent.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 }
OLDNEW
« no previous file with comments | « no previous file | tools/battor_agent/battor_agent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698