Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1144)

Side by Side Diff: remoting/codec/BUILD.gn

Issue 2254673002: Remove dependency on AudioStub in ConnectionToClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: win Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | remoting/codec/audio_decoder.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 source_set("codec") { 5 source_set("codec") {
6 sources = [ 6 sources = [
7 "audio_decoder.cc", 7 "audio_decoder.cc",
8 "audio_decoder.h", 8 "audio_decoder.h",
9 "audio_decoder_opus.cc", 9 "audio_decoder_opus.cc",
10 "audio_decoder_opus.h", 10 "audio_decoder_opus.h",
11 "audio_decoder_verbatim.cc",
12 "audio_decoder_verbatim.h",
13 "audio_encoder.h", 11 "audio_encoder.h",
14 "audio_encoder_opus.cc", 12 "audio_encoder_opus.cc",
15 "audio_encoder_opus.h", 13 "audio_encoder_opus.h",
16 "audio_encoder_verbatim.cc",
17 "audio_encoder_verbatim.h",
18 "scoped_vpx_codec.cc", 14 "scoped_vpx_codec.cc",
19 "scoped_vpx_codec.h", 15 "scoped_vpx_codec.h",
20 "video_decoder.h", 16 "video_decoder.h",
21 "video_decoder_verbatim.cc", 17 "video_decoder_verbatim.cc",
22 "video_decoder_verbatim.h", 18 "video_decoder_verbatim.h",
23 "video_decoder_vpx.cc", 19 "video_decoder_vpx.cc",
24 "video_decoder_vpx.h", 20 "video_decoder_vpx.h",
25 "video_encoder.cc", 21 "video_encoder.cc",
26 "video_encoder.h", 22 "video_encoder.h",
27 "video_encoder_helper.cc", 23 "video_encoder_helper.cc",
(...skipping 21 matching lines...) Expand all
49 45
50 if (is_nacl) { 46 if (is_nacl) {
51 deps -= [ 47 deps -= [
52 "//media", 48 "//media",
53 "//media:shared_memory_support", 49 "//media:shared_memory_support",
54 ] 50 ]
55 sources -= [ 51 sources -= [
56 "audio_encoder.h", 52 "audio_encoder.h",
57 "audio_encoder_opus.cc", 53 "audio_encoder_opus.cc",
58 "audio_encoder_opus.h", 54 "audio_encoder_opus.h",
59 "audio_encoder_verbatim.cc",
60 "audio_encoder_verbatim.h",
61 "video_encoder.cc", 55 "video_encoder.cc",
62 "video_encoder.h", 56 "video_encoder.h",
63 "video_encoder_helper.cc", 57 "video_encoder_helper.cc",
64 "video_encoder_helper.h", 58 "video_encoder_helper.h",
65 "video_encoder_verbatim.cc", 59 "video_encoder_verbatim.cc",
66 "video_encoder_verbatim.h", 60 "video_encoder_verbatim.h",
67 "video_encoder_vpx.cc", 61 "video_encoder_vpx.cc",
68 "video_encoder_vpx.h", 62 "video_encoder_vpx.h",
69 "webrtc_video_encoder_vpx.cc", 63 "webrtc_video_encoder_vpx.cc",
70 "webrtc_video_encoder_vpx.h", 64 "webrtc_video_encoder_vpx.h",
(...skipping 15 matching lines...) Expand all
86 ] 80 ]
87 81
88 deps = [ 82 deps = [
89 ":codec", 83 ":codec",
90 "//base", 84 "//base",
91 "//remoting/proto", 85 "//remoting/proto",
92 "//testing/gtest", 86 "//testing/gtest",
93 "//third_party/webrtc/modules/desktop_capture", 87 "//third_party/webrtc/modules/desktop_capture",
94 ] 88 ]
95 } 89 }
OLDNEW
« no previous file with comments | « no previous file | remoting/codec/audio_decoder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698