OLD | NEW |
(Empty) | |
| 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 |
| 3 # found in the LICENSE file. |
| 4 |
| 5 import("//build/config/chromecast_build.gni") |
| 6 import("//ui/ozone/ozone.gni") |
| 7 |
| 8 # GYP version: cast.gypi:ozone_platform_cast |
| 9 # TODO(slan): gn check needs deps on ozone and media to pass. Correct this. |
| 10 source_set("cast") { |
| 11 sources = [ |
| 12 "client_native_pixmap_factory_cast.cc", |
| 13 "client_native_pixmap_factory_cast.h", |
| 14 "gpu_platform_support_cast.cc", |
| 15 "gpu_platform_support_cast.h", |
| 16 "overlay_manager_cast.cc", |
| 17 "overlay_manager_cast.h", |
| 18 "ozone_platform_cast.cc", |
| 19 "ozone_platform_cast.h", |
| 20 "platform_window_cast.cc", |
| 21 "platform_window_cast.h", |
| 22 "surface_factory_cast.cc", |
| 23 "surface_factory_cast.h", |
| 24 "surface_ozone_egl_cast.cc", |
| 25 "surface_ozone_egl_cast.h", |
| 26 ] |
| 27 |
| 28 deps = [ |
| 29 "//base", |
| 30 "//chromecast/graphics:libcast_graphics", |
| 31 "//chromecast/media:libcast_media", |
| 32 "//ui/gfx", |
| 33 "//ui/gfx/geometry", |
| 34 "//ui/ozone:ozone_base", |
| 35 "//ui/platform_window", |
| 36 ] |
| 37 } |
OLD | NEW |