summaryrefslogtreecommitdiffstats
path: root/tools/battor_agent/BUILD.gn
blob: 07d3af59fa1db4718cd08618cefdb2fa2a240f0b (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
# 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.

import("//testing/test.gni")

# Works only on desktop platforms.
assert(is_win || is_linux || is_mac)

executable("battor_agent") {
  sources = [
    "battor_agent_bin.cc",
  ]
  deps = [
    ":battor_agent_lib",
    "//base",
    "//device/serial",
    "//mojo/public/c/system:for_shared_library",
  ]
}

source_set("battor_agent_lib") {
  sources = [
    "battor_agent.cc",
    "battor_agent.h",
    "battor_connection.cc",
    "battor_connection.h",
    "battor_connection_impl.cc",
    "battor_connection_impl.h",
    "battor_error.h",
  ]
  deps = [
    "//base",
    "//device/serial",
    "//net",
  ]
}

test("battor_agent_unittests") {
  sources = [
    "battor_connection_impl_unittest.cc",
  ]
  deps = [
    ":battor_agent_lib",
    "//base",
    "//base/test:run_all_unittests",
    "//device/serial",
    "//device/serial:test_support",
    "//mojo/public/c/system:for_shared_library",
    "//testing/gtest",
  ]
}