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 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 "sender/vp8_encoder.cc", | 146 "sender/vp8_encoder.cc", |
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:media_features", |
156 "//media:shared_memory_support", | 157 "//media:shared_memory_support", |
157 "//third_party/libvpx", | 158 "//third_party/libvpx", |
158 "//third_party/opus", | 159 "//third_party/opus", |
159 "//ui/gfx/geometry", | 160 "//ui/gfx/geometry", |
160 ] | 161 ] |
161 | 162 |
162 # use a restricted subset of media and no software codecs on iOS | 163 # use a restricted subset of media and no software codecs on iOS |
163 if (is_ios) { | 164 if (is_ios) { |
164 deps += [ "//media:media_for_cast_ios" ] | 165 deps += [ "//media:media_for_cast_ios" ] |
165 deps -= [ | 166 deps -= [ |
(...skipping 374 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
540 deps = [ | 541 deps = [ |
541 ":sender", | 542 ":sender", |
542 ] | 543 ] |
543 } | 544 } |
544 | 545 |
545 static_library("cast_receiver") { | 546 static_library("cast_receiver") { |
546 deps = [ | 547 deps = [ |
547 ":receiver", | 548 ":receiver", |
548 ] | 549 ] |
549 } | 550 } |
OLD | NEW |