OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/linux/pkg_config.gni") | 5 import("//build/config/linux/pkg_config.gni") |
6 import("//ui/ozone/ozone.gni") | 6 import("//ui/ozone/ozone.gni") |
7 | 7 |
8 pkg_config("libdrm") { | 8 pkg_config("libdrm") { |
9 packages = [ "libdrm" ] | 9 packages = [ "libdrm" ] |
10 } | 10 } |
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
65 ] | 65 ] |
66 | 66 |
67 deps = [ | 67 deps = [ |
68 "//base", | 68 "//base", |
69 "//skia", | 69 "//skia", |
70 "//ipc", | 70 "//ipc", |
71 "//ui/base", | 71 "//ui/base", |
72 "//ui/display/types", | 72 "//ui/display/types", |
73 "//ui/events", | 73 "//ui/events", |
74 "//ui/events/ozone:events_ozone_evdev", | 74 "//ui/events/ozone:events_ozone_evdev", |
| 75 "//ui/events/ozone:events_ozone_layout", |
75 "//ui/gfx", | 76 "//ui/gfx", |
76 "//ui/gfx/geometry", | 77 "//ui/gfx/geometry", |
77 ] | 78 ] |
78 | 79 |
79 public_configs = [ ":libdrm" ] | 80 public_configs = [ ":libdrm" ] |
80 } | 81 } |
81 | 82 |
82 if (ozone_platform_dri) { | 83 if (ozone_platform_dri) { |
83 source_set("dri") { | 84 source_set("dri") { |
84 sources = [ | 85 sources = [ |
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
137 deps = [ | 138 deps = [ |
138 ":dri_common", | 139 ":dri_common", |
139 "//base", | 140 "//base", |
140 "//skia", | 141 "//skia", |
141 "//ui/events/ozone:events_ozone_evdev", | 142 "//ui/events/ozone:events_ozone_evdev", |
142 ] | 143 ] |
143 | 144 |
144 public_configs = [ ":libgbm" ] | 145 public_configs = [ ":libgbm" ] |
145 } | 146 } |
146 } | 147 } |
OLD | NEW |