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 defines = [ "OZONE_IMPLEMENTATION" ] | |
brettw
2015/09/17 22:52:14
Remove this. This is not a component and will actu
slan
2015/09/18 02:31:26
Done.
| |
29 | |
30 deps = [ | |
31 "//base", | |
32 "//chromecast/graphics:libcast_graphics", | |
33 "//chromecast/media:libcast_media", | |
34 "//ui/gfx", | |
35 "//ui/gfx/geometry", | |
36 "//ui/ozone:ozone_base", | |
37 "//ui/platform_window", | |
38 ] | |
39 } | |
OLD | NEW |