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
|
# Copyright 2014 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("//remoting/remoting_srcs.gni")
source_set("client") {
sources = rebase_path(remoting_srcs_gypi_values.remoting_client_sources,
".",
"//remoting")
configs += [
"//build/config/compiler:wexit_time_destructors",
"//remoting:version",
]
deps = [
"//remoting/base",
"//remoting/codec",
"//remoting/protocol",
"//third_party/libyuv",
"//third_party/webrtc/modules/desktop_capture",
]
}
source_set("unit_tests") {
testonly = true
sources = [
"audio_player_unittest.cc",
"client_status_logger_unittest.cc",
"key_event_mapper_unittest.cc",
"server_log_entry_client_unittest.cc",
]
configs += [ "//remoting:version" ]
deps = [
":client",
"//remoting/proto",
"//testing/gmock",
"//testing/gtest",
"//third_party/webrtc",
]
}
|