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 import("//build/config/linux/pkg_config.gni") | 7 import("//build/config/linux/pkg_config.gni") |
8 | 8 |
9 declare_args() { | 9 declare_args() { |
10 use_wayland_egl = true | 10 use_wayland_egl = true |
(...skipping 23 matching lines...) Expand all Loading... |
34 "wayland_surface_factory.h", | 34 "wayland_surface_factory.h", |
35 "wayland_window.cc", | 35 "wayland_window.cc", |
36 "wayland_window.h", | 36 "wayland_window.h", |
37 ] | 37 ] |
38 | 38 |
39 deps = [ | 39 deps = [ |
40 "//base", | 40 "//base", |
41 "//skia", | 41 "//skia", |
42 "//third_party/wayland:wayland_client", | 42 "//third_party/wayland:wayland_client", |
43 "//third_party/wayland-protocols:xdg_shell_protocol", | 43 "//third_party/wayland-protocols:xdg_shell_protocol", |
| 44 "//ui/display", |
44 "//ui/events", | 45 "//ui/events", |
45 "//ui/events/platform", | 46 "//ui/events/platform", |
46 "//ui/gfx", | 47 "//ui/gfx", |
47 "//ui/gfx/geometry", | 48 "//ui/gfx/geometry", |
48 "//ui/ozone:ozone_base", | 49 "//ui/ozone:ozone_base", |
49 "//ui/ozone/common", | 50 "//ui/ozone/common", |
50 "//ui/platform_window", | 51 "//ui/platform_window", |
51 ] | 52 ] |
52 | 53 |
53 defines = [ "OZONE_IMPLEMENTATION" ] | 54 defines = [ "OZONE_IMPLEMENTATION" ] |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 "//testing/gmock", | 86 "//testing/gmock", |
86 "//testing/gtest", | 87 "//testing/gtest", |
87 "//third_party/wayland:wayland_server", | 88 "//third_party/wayland:wayland_server", |
88 "//third_party/wayland-protocols:xdg_shell_protocol", | 89 "//third_party/wayland-protocols:xdg_shell_protocol", |
89 "//ui/gfx:test_support", | 90 "//ui/gfx:test_support", |
90 "//ui/ozone:platform", | 91 "//ui/ozone:platform", |
91 ] | 92 ] |
92 | 93 |
93 defines = [ "WL_HIDE_DEPRECATED" ] | 94 defines = [ "WL_HIDE_DEPRECATED" ] |
94 } | 95 } |
OLD | NEW |