mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
65 lines
1.4 KiB
Plaintext
65 lines
1.4 KiB
Plaintext
# 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",
|
|
"//build/config:exe_and_shlib_deps",
|
|
"//build/win:default_exe_manifest",
|
|
]
|
|
}
|
|
|
|
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.cc",
|
|
"battor_error.h",
|
|
"battor_finder.cc",
|
|
"battor_finder.h",
|
|
"battor_sample_converter.cc",
|
|
"battor_sample_converter.h",
|
|
"serial_utils.cc",
|
|
"serial_utils.h",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
"//device/serial",
|
|
"//mojo/public/cpp/bindings",
|
|
"//net",
|
|
]
|
|
}
|
|
|
|
test("battor_agent_unittests") {
|
|
sources = [
|
|
"battor_agent_unittest.cc",
|
|
"battor_connection_impl_unittest.cc",
|
|
"battor_protocol_types_unittest.cc",
|
|
"battor_sample_converter_unittest.cc",
|
|
"serial_utils_unittest.cc",
|
|
]
|
|
deps = [
|
|
":battor_agent_lib",
|
|
"//base",
|
|
"//base/test:run_all_unittests",
|
|
"//base/test:test_support",
|
|
"//device/serial:test_support",
|
|
"//testing/gmock",
|
|
"//testing/gtest",
|
|
]
|
|
}
|