summaryrefslogtreecommitdiffstats
path: root/tools/battor_agent/battor_agent.gyp
blob: 974fbdefcf2f8aada1a773f4427bd8fd808d6b93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

{
  'targets': [
    {
      'target_name': 'battor_agent',
      'type': 'executable',
      'include_dirs': [
        '../..',
      ],
      'dependencies': [
        'battor_agent_lib',
        '../../device/serial/serial.gyp:device_serial',
        '../../device/serial/serial.gyp:device_serial_mojo',
        '../../mojo/mojo_edk.gyp:mojo_system_impl',
      ],
      'sources': [
        'battor_agent_bin.cc',
      ],
    },
    {
      'target_name': 'battor_agent_lib',
      'type': 'static_library',
      'include_dirs': [
        '../..',
      ],
      'sources': [
        'battor_agent.cc',
        'battor_agent.h',
        'battor_connection.cc',
        'battor_connection.h',
        'battor_connection_impl.cc',
        'battor_connection_impl.h',
        'battor_error.cc',
        'battor_error.h',
        'battor_finder.cc',
        'battor_finder.h',
        'battor_sample_converter.cc',
        'battor_sample_converter.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',
        '../../base/base.gyp:base',
        '../../base/base.gyp:run_all_unittests',
        '../../base/base.gyp:test_support_base',
        '../../device/serial/serial.gyp:device_serial',
        '../../device/serial/serial.gyp:device_serial_test_util',
        '../../mojo/mojo_edk.gyp:mojo_system_impl',
      	'../../testing/gmock.gyp:gmock',
        '../../testing/gtest.gyp:gtest',
      ],
      'sources': [
	'battor_agent_unittest.cc',
        'battor_connection_impl_unittest.cc',
        'battor_protocol_types_unittest.cc',
        'battor_sample_converter_unittest.cc',
      ],
    },
  ],
  'conditions': [
    ['test_isolation_mode != "noop"', {
      'targets': [
        {
          'target_name': 'battor_agent_unittests_run',
          'type': 'none',
          'dependencies': [
            'battor_agent_unittests',
          ],
          'includes': [
            '../../build/isolate.gypi',
          ],
          'sources': [
            'battor_agent_unittests.isolate',
          ],
        },
      ],
    }],
  ],
}