Chromium Code Reviews| 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..e9bda38fecfd50287759bf50d48770f799241788 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': 'battor_agent_unittests', |
| + 'type': '<(gtest_target_type)', |
| + 'dependencies': [ |
| + 'battor_agent_lib', |
| + '../testing/gtest.gyp:gtest', |
| + '../base/base.gyp:test_support_base', |
|
Primiano Tucci (use gerrit)
2015/12/16 16:47:43
nit: alpha orderding of these
|
| + '../../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', |
| + ], |
| + }, |
| ], |
| } |