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("//build/config/chromecast_build.gni") | 5 import("//build/config/chromecast_build.gni") |
6 import("//ui/ozone/ozone.gni") | 6 import("//ui/ozone/ozone.gni") |
7 | 7 |
8 visibility = [ | 8 visibility = [ |
9 "//ui/ozone/*", | 9 "//ui/ozone/*", |
10 "//chromecast/*", | 10 "//chromecast/*", |
(...skipping 24 matching lines...) Expand all Loading... |
35 # For EGL header included in surface_factory_cast.cc (needs EGL types). | 35 # For EGL header included in surface_factory_cast.cc (needs EGL types). |
36 configs += [ "//third_party/khronos:khronos_headers" ] | 36 configs += [ "//third_party/khronos:khronos_headers" ] |
37 | 37 |
38 # For loading EGL functions using dlsym in surface_factory_cast.cc because we | 38 # For loading EGL functions using dlsym in surface_factory_cast.cc because we |
39 # do not want to statically link against EGL library. | 39 # do not want to statically link against EGL library. |
40 libs = [ "dl" ] | 40 libs = [ "dl" ] |
41 | 41 |
42 deps = [ | 42 deps = [ |
43 "//base", | 43 "//base", |
44 "//chromecast:chromecast_features", | 44 "//chromecast:chromecast_features", |
| 45 "//chromecast/base:base", |
45 "//chromecast/graphics:libcast_graphics_1.0", | 46 "//chromecast/graphics:libcast_graphics_1.0", |
46 "//ui/gfx", | 47 "//ui/gfx", |
47 "//ui/gfx/geometry", | 48 "//ui/gfx/geometry", |
48 "//ui/ozone:ozone_base", | 49 "//ui/ozone:ozone_base", |
49 "//ui/ozone/common", | 50 "//ui/ozone/common", |
50 "//ui/platform_window", | 51 "//ui/platform_window", |
51 ] | 52 ] |
52 } | 53 } |
OLD | NEW |