OLD | NEW |
1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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 visibility = [ "//ui/ozone/*" ] | 5 visibility = [ "//ui/ozone/*" ] |
6 | 6 |
7 source_set("x11") { | 7 source_set("x11") { |
8 sources = [ | 8 sources = [ |
9 "client_native_pixmap_factory_x11.cc", | 9 "client_native_pixmap_factory_x11.cc", |
10 "client_native_pixmap_factory_x11.h", | 10 "client_native_pixmap_factory_x11.h", |
| 11 "gl_ozone_glx.cc", |
| 12 "gl_ozone_glx.h", |
| 13 "gl_surface_glx_ozone.cc", |
| 14 "gl_surface_glx_ozone.h", |
11 "native_display_delegate_ozone_x11.cc", | 15 "native_display_delegate_ozone_x11.cc", |
12 "native_display_delegate_ozone_x11.h", | 16 "native_display_delegate_ozone_x11.h", |
13 "ozone_platform_x11.cc", | 17 "ozone_platform_x11.cc", |
14 "ozone_platform_x11.h", | 18 "ozone_platform_x11.h", |
15 "x11_cursor_factory_ozone.cc", | 19 "x11_cursor_factory_ozone.cc", |
16 "x11_cursor_factory_ozone.h", | 20 "x11_cursor_factory_ozone.h", |
17 "x11_surface_factory.cc", | 21 "x11_surface_factory.cc", |
18 "x11_surface_factory.h", | 22 "x11_surface_factory.h", |
19 ] | 23 ] |
20 | 24 |
(...skipping 16 matching lines...) Expand all Loading... |
37 "//ui/ozone:ozone_base", | 41 "//ui/ozone:ozone_base", |
38 "//ui/ozone/common", | 42 "//ui/ozone/common", |
39 "//ui/platform_window", | 43 "//ui/platform_window", |
40 "//ui/platform_window/x11", | 44 "//ui/platform_window/x11", |
41 ] | 45 ] |
42 | 46 |
43 configs += [ "//build/config/linux:x11" ] | 47 configs += [ "//build/config/linux:x11" ] |
44 | 48 |
45 public_configs = [ "//third_party/khronos:khronos_headers" ] | 49 public_configs = [ "//third_party/khronos:khronos_headers" ] |
46 } | 50 } |
OLD | NEW |