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("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 component("cast") { | 7 component("cast") { |
8 deps = [ | 8 deps = [ |
9 ":sender", | 9 ":sender", |
10 ":receiver", | 10 ":receiver", |
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
133 "sender/vp8_encoder.h", | 133 "sender/vp8_encoder.h", |
134 ] | 134 ] |
135 | 135 |
136 deps = [ | 136 deps = [ |
137 ":common", | 137 ":common", |
138 ":net", | 138 ":net", |
139 "//media", | 139 "//media", |
140 "//media:shared_memory_support", | 140 "//media:shared_memory_support", |
141 "//third_party/libvpx", | 141 "//third_party/libvpx", |
142 "//third_party/opus", | 142 "//third_party/opus", |
143 "//ui/gfx/geometry", | |
144 ] | 143 ] |
145 | 144 |
146 # use a restricted subset of media and no software codecs on iOS | 145 # use a restricted subset of media and no software codecs on iOS |
147 if (is_ios) { | 146 if (is_ios) { |
148 deps += [ "//media:media_for_cast_ios" ] | 147 deps += [ "//media:media_for_cast_ios" ] |
149 deps -= [ | 148 deps -= [ |
150 "//media", | 149 "//media", |
151 "//third_party/libvpx", | 150 "//third_party/libvpx", |
152 "//third_party/opus", | 151 "//third_party/opus", |
153 ] | 152 ] |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
368 sources = [ | 367 sources = [ |
369 "test/utility/udp_proxy_main.cc", | 368 "test/utility/udp_proxy_main.cc", |
370 ] | 369 ] |
371 | 370 |
372 deps = [ | 371 deps = [ |
373 ":test_support", | 372 ":test_support", |
374 "//base", | 373 "//base", |
375 "//net", | 374 "//net", |
376 ] | 375 ] |
377 } | 376 } |
OLD | NEW |