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

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

Issue 892383002: RELAND: [Cast] Software encoder support for varying video frame sizes. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for 'access to uninitialized memory' error. Created 5 years, 10 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("//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
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
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 }
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