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

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

Issue 1928143002: Rename gfx::Display/Screen to display::Display/Screen in chromecast/blimp/media (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: update blimp's gn for recent gn change Created 4 years, 7 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 "//chromecast/public",
17 "//ui/aura", 17 "//ui/aura",
18 "//ui/display",
18 "//ui/gfx", 19 "//ui/gfx",
19 "//ui/gfx/geometry", 20 "//ui/gfx/geometry",
20 ] 21 ]
21 } 22 }
22 } 23 }
23 24
24 shared_library("libcast_graphics_1.0") { 25 shared_library("libcast_graphics_1.0") {
25 sources = [ 26 sources = [
26 "cast_egl_platform_default.cc", 27 "cast_egl_platform_default.cc",
27 "graphics_properties_default.cc", 28 "graphics_properties_default.cc",
28 "osd_plane_default.cc", 29 "osd_plane_default.cc",
29 ] 30 ]
30 31
31 public_deps = [ 32 public_deps = [
32 "//chromecast/public", 33 "//chromecast/public",
33 ] 34 ]
34 35
35 deps = [ 36 deps = [
36 "//base", 37 "//base",
37 ] 38 ]
38 } 39 }
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