| 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 pkg_config("wayland-egl") { | 9 pkg_config("wayland-egl") { |
| 10 packages = [ "wayland-egl" ] | 10 packages = [ "wayland-egl" ] |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 } | 43 } |
| 44 | 44 |
| 45 deps = [ | 45 deps = [ |
| 46 "//base", | 46 "//base", |
| 47 "//skia", | 47 "//skia", |
| 48 "//third_party/wayland:wayland_client", | 48 "//third_party/wayland:wayland_client", |
| 49 "//third_party/wayland-protocols:xdg_shell_protocol", | 49 "//third_party/wayland-protocols:xdg_shell_protocol", |
| 50 "//ui/base:ui_features", | 50 "//ui/base:ui_features", |
| 51 "//ui/display", | 51 "//ui/display", |
| 52 "//ui/events", | 52 "//ui/events", |
| 53 "//ui/events:dom_keycode_converter", |
| 53 "//ui/events/ozone:events_ozone_layout", | 54 "//ui/events/ozone:events_ozone_layout", |
| 54 "//ui/events/platform", | 55 "//ui/events/platform", |
| 55 "//ui/gfx", | 56 "//ui/gfx", |
| 56 "//ui/gfx/geometry", | 57 "//ui/gfx/geometry", |
| 57 "//ui/ozone:ozone_base", | 58 "//ui/ozone:ozone_base", |
| 58 "//ui/ozone/common", | 59 "//ui/ozone/common", |
| 59 "//ui/platform_window", | 60 "//ui/platform_window", |
| 60 ] | 61 ] |
| 61 | 62 |
| 62 defines = [ "OZONE_IMPLEMENTATION" ] | 63 defines = [ "OZONE_IMPLEMENTATION" ] |
| (...skipping 25 matching lines...) Expand all Loading... |
| 88 "//testing/gmock", | 89 "//testing/gmock", |
| 89 "//testing/gtest", | 90 "//testing/gtest", |
| 90 "//third_party/wayland:wayland_server", | 91 "//third_party/wayland:wayland_server", |
| 91 "//third_party/wayland-protocols:xdg_shell_protocol", | 92 "//third_party/wayland-protocols:xdg_shell_protocol", |
| 92 "//ui/gfx:test_support", | 93 "//ui/gfx:test_support", |
| 93 "//ui/ozone:platform", | 94 "//ui/ozone:platform", |
| 94 ] | 95 ] |
| 95 | 96 |
| 96 defines = [ "WL_HIDE_DEPRECATED" ] | 97 defines = [ "WL_HIDE_DEPRECATED" ] |
| 97 } | 98 } |
| OLD | NEW |