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

Side by Side Diff: chromecast/graphics/BUILD.gn

Issue 1824723003: [chromecast] Pass media task runner to VideoPlaneController. (Closed) Base URL: https://chromium.googlesource.com/chromium/src@master
Patch Set: fixed android build Created 4 years, 9 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 | « chromecast/browser/cast_content_window.cc ('k') | chromecast/graphics/cast_screen.h » ('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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//chromecast/chromecast.gni") 5 import("//chromecast/chromecast.gni")
6 import("//build/config/ui.gni") 6 import("//build/config/ui.gni")
7 7
8 if (use_aura) { 8 if (use_aura) {
9 source_set("graphics") { 9 source_set("graphics") {
10 sources = [ 10 sources = [
11 "cast_screen.cc", 11 "cast_screen.cc",
12 "cast_screen.h", 12 "cast_screen.h",
13 ] 13 ]
14 14
15 deps = [ 15 deps = [
16 "//chromecast/public",
16 "//ui/aura", 17 "//ui/aura",
17 "//ui/gfx", 18 "//ui/gfx",
18 "//ui/gfx/geometry", 19 "//ui/gfx/geometry",
19 ] 20 ]
20 } 21 }
21 } 22 }
22 23
23 shared_library("libcast_graphics_1.0") { 24 shared_library("libcast_graphics_1.0") {
24 sources = [ 25 sources = [
25 "cast_egl_platform_default.cc", 26 "cast_egl_platform_default.cc",
26 "graphics_properties_default.cc", 27 "graphics_properties_default.cc",
27 "osd_plane_default.cc", 28 "osd_plane_default.cc",
28 ] 29 ]
29 30
30 public_deps = [ 31 public_deps = [
31 "//chromecast/public", 32 "//chromecast/public",
32 ] 33 ]
33 34
34 deps = [ 35 deps = [
35 "//base", 36 "//base",
36 ] 37 ]
37 } 38 }
OLDNEW
« no previous file with comments | « chromecast/browser/cast_content_window.cc ('k') | chromecast/graphics/cast_screen.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698