| 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 23 matching lines...) Expand all Loading... |
| 34 | 34 |
| 35 # For loading EGL functions using dlsym in surface_factory_cast.cc because we | 35 # For loading EGL functions using dlsym in surface_factory_cast.cc because we |
| 36 # do not want to statically link against EGL library. | 36 # do not want to statically link against EGL library. |
| 37 libs = [ "dl" ] | 37 libs = [ "dl" ] |
| 38 | 38 |
| 39 deps = [ | 39 deps = [ |
| 40 "//base", | 40 "//base", |
| 41 "//chromecast:chromecast_features", | 41 "//chromecast:chromecast_features", |
| 42 "//chromecast/base:base", | 42 "//chromecast/base:base", |
| 43 "//chromecast/graphics:libcast_graphics_1.0", | 43 "//chromecast/graphics:libcast_graphics_1.0", |
| 44 "//ui/events/ozone:events_ozone", |
| 45 "//ui/events/ozone:events_ozone_evdev", |
| 46 "//ui/events/ozone:events_ozone_layout", |
| 44 "//ui/gfx", | 47 "//ui/gfx", |
| 45 "//ui/gfx/geometry", | 48 "//ui/gfx/geometry", |
| 46 "//ui/ozone:ozone_base", | 49 "//ui/ozone:ozone_base", |
| 47 "//ui/ozone/common", | 50 "//ui/ozone/common", |
| 48 "//ui/platform_window", | 51 "//ui/platform_window", |
| 49 ] | 52 ] |
| 50 } | 53 } |
| OLD | NEW |