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