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

Unified Diff: tools/battor_agent/battor_agent.gyp

Issue 1524873002: Creates a BattOrConnection for communicating with the BattOr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years 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 side-by-side diff with in-line comments
Download patch
Index: tools/battor_agent/battor_agent.gyp
diff --git a/tools/battor_agent/battor_agent.gyp b/tools/battor_agent/battor_agent.gyp
index b5ac3d400c22023690c44de1da056f672ed7c1ba..8119be16328162981e414b3f19a94b8feccd1dd7 100644
--- a/tools/battor_agent/battor_agent.gyp
+++ b/tools/battor_agent/battor_agent.gyp
@@ -13,7 +13,6 @@
'dependencies': [
'battor_agent_lib',
'../../device/serial/serial.gyp:device_serial',
- '../../device/serial/serial.gyp:device_serial_mojo',
'../../third_party/mojo/mojo_public.gyp:mojo_environment_standalone',
'../../third_party/mojo/mojo_public.gyp:mojo_public',
],
@@ -30,13 +29,29 @@
'sources': [
'battor_agent.cc',
'battor_agent.h',
+ 'battor_connection.cc',
+ 'battor_connection.h',
'battor_error.h',
],
'dependencies': [
'../../base/base.gyp:base',
'../../device/serial/serial.gyp:device_serial',
- '../../device/serial/serial.gyp:device_serial_mojo',
]
},
+ {
+ 'target_name': 'sql_unittests',
Zhen Wang 2015/12/14 23:39:44 Where does "sql" come from?
Primiano Tucci (use gerrit) 2015/12/15 11:07:19 Yeah I guess you meant battor_agent_unittests. Now
charliea (OOO until 10-5) 2015/12/15 23:50:03 Welp, my cover's blown.
+ 'type': '<(gtest_target_type)',
+ 'dependencies': [
+ 'battor_agent_lib',
+ '../testing/gtest.gyp:gtest',
+ '../base/base.gyp:test_support_base',
+ '../../third_party/mojo/mojo_public.gyp:mojo_environment_standalone',
+ '../../third_party/mojo/mojo_public.gyp:mojo_public',
+ '../../device/serial/serial.gyp:device_serial_test_util',
+ ],
+ 'sources': [
+ 'battor_connection_unittest.cc',
+ ],
+ },
],
}

Powered by Google App Engine
This is Rietveld 408576698