OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/android/config.gni") | 5 import("//build/config/android/config.gni") |
6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
10 | 10 |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
147 "sender/vp8_encoder.h", | 147 "sender/vp8_encoder.h", |
148 "sender/vp8_quantizer_parser.cc", | 148 "sender/vp8_quantizer_parser.cc", |
149 "sender/vp8_quantizer_parser.h", | 149 "sender/vp8_quantizer_parser.h", |
150 ] | 150 ] |
151 | 151 |
152 deps = [ | 152 deps = [ |
153 ":common", | 153 ":common", |
154 ":net", | 154 ":net", |
155 "//media", | 155 "//media", |
156 "//media:shared_memory_support", | 156 "//media:shared_memory_support", |
157 "//third_party/libvpx_new", | 157 "//third_party/libvpx", |
158 "//third_party/opus", | 158 "//third_party/opus", |
159 "//ui/gfx/geometry", | 159 "//ui/gfx/geometry", |
160 ] | 160 ] |
161 | 161 |
162 # use a restricted subset of media and no software codecs on iOS | 162 # use a restricted subset of media and no software codecs on iOS |
163 if (is_ios) { | 163 if (is_ios) { |
164 deps += [ "//media:media_for_cast_ios" ] | 164 deps += [ "//media:media_for_cast_ios" ] |
165 deps -= [ | 165 deps -= [ |
166 "//media", | 166 "//media", |
167 "//third_party/libvpx_new", | 167 "//third_party/libvpx", |
168 "//third_party/opus", | 168 "//third_party/opus", |
169 ] | 169 ] |
170 sources -= [ | 170 sources -= [ |
171 "sender/external_video_encoder.cc", | 171 "sender/external_video_encoder.cc", |
172 "sender/external_video_encoder.h", | 172 "sender/external_video_encoder.h", |
173 "sender/video_encoder_impl.cc", | 173 "sender/video_encoder_impl.cc", |
174 "sender/video_encoder_impl.h", | 174 "sender/video_encoder_impl.h", |
175 "sender/vp8_encoder.cc", | 175 "sender/vp8_encoder.cc", |
176 "sender/vp8_encoder.h", | 176 "sender/vp8_encoder.h", |
177 "sender/vp8_quantizer_parser.cc", | 177 "sender/vp8_quantizer_parser.cc", |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
214 "receiver/frame_receiver.h", | 214 "receiver/frame_receiver.h", |
215 "receiver/video_decoder.cc", | 215 "receiver/video_decoder.cc", |
216 "receiver/video_decoder.h", | 216 "receiver/video_decoder.h", |
217 ] | 217 ] |
218 | 218 |
219 deps = [ | 219 deps = [ |
220 ":common", | 220 ":common", |
221 ":net", | 221 ":net", |
222 "//media", | 222 "//media", |
223 "//media:shared_memory_support", | 223 "//media:shared_memory_support", |
224 "//third_party/libvpx_new", | 224 "//third_party/libvpx", |
225 "//third_party/libyuv", | 225 "//third_party/libyuv", |
226 "//third_party/opus", | 226 "//third_party/opus", |
227 "//ui/gfx/geometry", | 227 "//ui/gfx/geometry", |
228 ] | 228 ] |
229 | 229 |
230 # use a restricted subset of media and no software codecs on iOS | 230 # use a restricted subset of media and no software codecs on iOS |
231 if (is_ios) { | 231 if (is_ios) { |
232 deps += [ "//media:media_for_cast_ios" ] | 232 deps += [ "//media:media_for_cast_ios" ] |
233 deps -= [ | 233 deps -= [ |
234 "//media", | 234 "//media", |
235 "//third_party/libvpx_new", | 235 "//third_party/libvpx", |
236 "//third_party/opus", | 236 "//third_party/opus", |
237 ] | 237 ] |
238 } | 238 } |
239 } | 239 } |
240 | 240 |
241 static_library("test_support") { | 241 static_library("test_support") { |
242 testonly = true | 242 testonly = true |
243 sources = [ | 243 sources = [ |
244 "test/fake_receiver_time_offset_estimator.cc", | 244 "test/fake_receiver_time_offset_estimator.cc", |
245 "test/fake_receiver_time_offset_estimator.h", | 245 "test/fake_receiver_time_offset_estimator.h", |
(...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
541 deps = [ | 541 deps = [ |
542 ":sender", | 542 ":sender", |
543 ] | 543 ] |
544 } | 544 } |
545 | 545 |
546 static_library("cast_receiver") { | 546 static_library("cast_receiver") { |
547 deps = [ | 547 deps = [ |
548 ":receiver", | 548 ":receiver", |
549 ] | 549 ] |
550 } | 550 } |
OLD | NEW |