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
|
# 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("//remoting/remoting_srcs.gni")
source_set("codec") {
sources = rebase_path(remoting_srcs_gypi_values.remoting_codec_sources,
".",
"//remoting")
configs += [ "//build/config/compiler:wexit_time_destructors" ]
deps = [
"//base/third_party/dynamic_annotations",
"//media",
"//media:shared_memory_support",
"//remoting/proto",
"//third_party/libvpx_new",
"//third_party/libyuv",
"//third_party/opus",
"//third_party/webrtc/modules/desktop_capture:primitives",
]
if (is_nacl) {
deps -= [
"//media",
"//media:shared_memory_support",
]
sources -= [
"audio_encoder.h",
"audio_encoder_opus.cc",
"audio_encoder_opus.h",
"audio_encoder_verbatim.cc",
"audio_encoder_verbatim.h",
"video_encoder.h",
"video_encoder_helper.cc",
"video_encoder_helper.h",
"video_encoder_verbatim.cc",
"video_encoder_verbatim.h",
"video_encoder_vpx.cc",
"video_encoder_vpx.h",
]
}
}
source_set("unit_tests") {
testonly = true
sources = [
"audio_encoder_opus_unittest.cc",
"codec_test.cc",
"codec_test.h",
"video_decoder_vpx_unittest.cc",
"video_encoder_helper_unittest.cc",
"video_encoder_verbatim_unittest.cc",
"video_encoder_vpx_unittest.cc",
]
deps = [
":codec",
"//base",
"//remoting/proto",
"//testing/gtest",
"//third_party/webrtc/modules/desktop_capture",
]
}
|