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

Side by Side Diff: media/cast/BUILD.gn

Issue 1919163003: Added media_features dependency for cast_sender target (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 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 | media/cast/cast.gyp » ('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 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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | media/cast/cast.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698