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", |
143 ] | 144 ] |
144 | 145 |
145 # use a restricted subset of media and no software codecs on iOS | 146 # use a restricted subset of media and no software codecs on iOS |
146 if (is_ios) { | 147 if (is_ios) { |
147 deps += [ "//media:media_for_cast_ios" ] | 148 deps += [ "//media:media_for_cast_ios" ] |
148 deps -= [ | 149 deps -= [ |
149 "//media", | 150 "//media", |
150 "//third_party/libvpx", | 151 "//third_party/libvpx", |
151 "//third_party/opus", | 152 "//third_party/opus", |
152 ] | 153 ] |
(...skipping 214 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
367 sources = [ | 368 sources = [ |
368 "test/utility/udp_proxy_main.cc", | 369 "test/utility/udp_proxy_main.cc", |
369 ] | 370 ] |
370 | 371 |
371 deps = [ | 372 deps = [ |
372 ":test_support", | 373 ":test_support", |
373 "//base", | 374 "//base", |
374 "//net", | 375 "//net", |
375 ] | 376 ] |
376 } | 377 } |
OLD | NEW |