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 source_set("graphics") { | 8 source_set("graphics") { |
9 sources = [ | 9 sources = [ |
10 "cast_vsync_settings.cc", | 10 "cast_vsync_settings.cc", |
(...skipping 14 matching lines...) Expand all Loading... |
25 ":libcast_graphics_1.0", | 25 ":libcast_graphics_1.0", |
26 "//chromecast/public", | 26 "//chromecast/public", |
27 "//ui/aura", | 27 "//ui/aura", |
28 "//ui/display", | 28 "//ui/display", |
29 "//ui/gfx", | 29 "//ui/gfx", |
30 "//ui/gfx/geometry", | 30 "//ui/gfx/geometry", |
31 ] | 31 ] |
32 } | 32 } |
33 } | 33 } |
34 | 34 |
35 shared_library("libcast_graphics_1.0") { | 35 static_library("libcast_graphics_1.0") { |
36 sources = [ | 36 sources = [ |
37 "cast_egl_platform_default.cc", | 37 "cast_egl_platform_default.cc", |
38 "graphics_properties_default.cc", | 38 "graphics_properties_default.cc", |
39 "osd_plane_default.cc", | 39 "osd_plane_default.cc", |
40 ] | 40 ] |
41 | 41 |
42 public_deps = [ | 42 public_deps = [ |
43 "//chromecast/public", | 43 "//chromecast/public", |
44 ] | 44 ] |
45 | 45 |
46 deps = [ | 46 deps = [ |
47 "//base", | 47 "//base", |
48 "//chromecast/base:chromecast_switches", | 48 "//chromecast/base:chromecast_switches", |
49 "//chromecast/base:init_shlib", | 49 "//chromecast/base:init_shlib", |
50 ] | 50 ] |
51 } | 51 } |
OLD | NEW |