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 { | 5 { |
6 'targets': [ | 6 'targets': [ |
7 { | 7 { |
8 'target_name': 'battor_agent', | 8 'target_name': 'battor_agent', |
9 'type': 'executable', | 9 'type': 'executable', |
10 'include_dirs': [ | 10 'include_dirs': [ |
11 '../..', | 11 '../..', |
12 ], | 12 ], |
13 'dependencies': [ | 13 'dependencies': [ |
14 'battor_agent_lib', | 14 'battor_agent_lib', |
15 '../../device/serial/serial.gyp:device_serial', | 15 '../../device/serial/serial.gyp:device_serial', |
16 '../../device/serial/serial.gyp:device_serial_mojo', | 16 '../../device/serial/serial.gyp:device_serial_mojo', |
17 '../../mojo/mojo_public.gyp:mojo_environment_standalone', | |
18 '../../mojo/mojo_edk.gyp:mojo_system_impl', | 17 '../../mojo/mojo_edk.gyp:mojo_system_impl', |
19 ], | 18 ], |
20 'sources': [ | 19 'sources': [ |
21 'battor_agent_bin.cc', | 20 'battor_agent_bin.cc', |
22 ], | 21 ], |
23 }, | 22 }, |
24 { | 23 { |
25 'target_name': 'battor_agent_lib', | 24 'target_name': 'battor_agent_lib', |
26 'type': 'static_library', | 25 'type': 'static_library', |
27 'include_dirs': [ | 26 'include_dirs': [ |
(...skipping 23 matching lines...) Expand all Loading... |
51 'target_name': 'battor_agent_unittests', | 50 'target_name': 'battor_agent_unittests', |
52 'type': '<(gtest_target_type)', | 51 'type': '<(gtest_target_type)', |
53 'dependencies': [ | 52 'dependencies': [ |
54 'battor_agent_lib', | 53 'battor_agent_lib', |
55 '../../base/base.gyp:base', | 54 '../../base/base.gyp:base', |
56 '../../base/base.gyp:run_all_unittests', | 55 '../../base/base.gyp:run_all_unittests', |
57 '../../base/base.gyp:test_support_base', | 56 '../../base/base.gyp:test_support_base', |
58 '../../device/serial/serial.gyp:device_serial', | 57 '../../device/serial/serial.gyp:device_serial', |
59 '../../device/serial/serial.gyp:device_serial_test_util', | 58 '../../device/serial/serial.gyp:device_serial_test_util', |
60 '../../mojo/mojo_edk.gyp:mojo_system_impl', | 59 '../../mojo/mojo_edk.gyp:mojo_system_impl', |
61 '../../mojo/mojo_public.gyp:mojo_environment_standalone', | |
62 '../../testing/gmock.gyp:gmock', | 60 '../../testing/gmock.gyp:gmock', |
63 '../../testing/gtest.gyp:gtest', | 61 '../../testing/gtest.gyp:gtest', |
64 ], | 62 ], |
65 'sources': [ | 63 'sources': [ |
66 'battor_agent_unittest.cc', | 64 'battor_agent_unittest.cc', |
67 'battor_connection_impl_unittest.cc', | 65 'battor_connection_impl_unittest.cc', |
68 'battor_protocol_types_unittest.cc', | 66 'battor_protocol_types_unittest.cc', |
69 'battor_sample_converter_unittest.cc', | 67 'battor_sample_converter_unittest.cc', |
70 ], | 68 ], |
71 }, | 69 }, |
(...skipping 11 matching lines...) Expand all Loading... |
83 '../../build/isolate.gypi', | 81 '../../build/isolate.gypi', |
84 ], | 82 ], |
85 'sources': [ | 83 'sources': [ |
86 'battor_agent_unittests.isolate', | 84 'battor_agent_unittests.isolate', |
87 ], | 85 ], |
88 }, | 86 }, |
89 ], | 87 ], |
90 }], | 88 }], |
91 ], | 89 ], |
92 } | 90 } |
OLD | NEW |