| OLD | NEW |
| 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 } |
| OLD | NEW |