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 # GYP version: cast.gypi:ozone_platform_cast | 8 # GYP version: cast.gypi:ozone_platform_cast |
9 # TODO(slan): gn check needs deps on ozone and media to pass. Correct this. | 9 # TODO(slan): gn check needs deps on ozone and media to pass. Correct this. |
10 source_set("cast") { | 10 source_set("cast") { |
(...skipping 16 matching lines...) Expand all Loading... |
27 | 27 |
28 # For EGL header included in surface_factory_cast.cc (needs EGL types). | 28 # For EGL header included in surface_factory_cast.cc (needs EGL types). |
29 configs += [ "//third_party/khronos:khronos_headers" ] | 29 configs += [ "//third_party/khronos:khronos_headers" ] |
30 | 30 |
31 # For loading EGL functions using dlsym in surface_factory_cast.cc because we | 31 # For loading EGL functions using dlsym in surface_factory_cast.cc because we |
32 # do not want to statically link against EGL library. | 32 # do not want to statically link against EGL library. |
33 libs = [ "dl" ] | 33 libs = [ "dl" ] |
34 | 34 |
35 deps = [ | 35 deps = [ |
36 "//base", | 36 "//base", |
| 37 "//chromecast/graphics:libcast_graphics_1.0", |
37 "//chromecast/media/base:message_loop", | 38 "//chromecast/media/base:message_loop", |
38 "//chromecast/graphics:libcast_graphics_1.0", | |
39 "//ui/gfx", | 39 "//ui/gfx", |
40 "//ui/gfx/geometry", | 40 "//ui/gfx/geometry", |
41 "//ui/ozone:ozone_base", | 41 "//ui/ozone:ozone_base", |
42 "//ui/platform_window", | 42 "//ui/platform_window", |
43 ] | 43 ] |
44 } | 44 } |
OLD | NEW |