| 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 declare_args() { | 8 declare_args() { |
| 9 use_drm_atomic = false | 9 use_drm_atomic = false |
| 10 } | 10 } |
| (...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 119 "ozone_platform_gbm.cc", | 119 "ozone_platform_gbm.cc", |
| 120 "ozone_platform_gbm.h", | 120 "ozone_platform_gbm.h", |
| 121 ] | 121 ] |
| 122 | 122 |
| 123 deps = [ | 123 deps = [ |
| 124 "//base", | 124 "//base", |
| 125 "//ipc", | 125 "//ipc", |
| 126 "//skia", | 126 "//skia", |
| 127 "//third_party/minigbm", | 127 "//third_party/minigbm", |
| 128 "//ui/base", | 128 "//ui/base", |
| 129 "//ui/display", |
| 129 "//ui/display/types", | 130 "//ui/display/types", |
| 130 "//ui/display/util", | 131 "//ui/display/util", |
| 131 "//ui/events", | 132 "//ui/events", |
| 132 "//ui/events/devices", | 133 "//ui/events/devices", |
| 133 "//ui/events/ozone:events_ozone", | 134 "//ui/events/ozone:events_ozone", |
| 134 "//ui/events/ozone:events_ozone_evdev", | 135 "//ui/events/ozone:events_ozone_evdev", |
| 135 "//ui/events/ozone:events_ozone_layout", | 136 "//ui/events/ozone:events_ozone_layout", |
| 136 "//ui/events/platform", | 137 "//ui/events/platform", |
| 137 "//ui/gfx", | 138 "//ui/gfx", |
| 138 "//ui/gfx/geometry", | 139 "//ui/gfx/geometry", |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 185 ":gbm", | 186 ":gbm", |
| 186 "//skia", | 187 "//skia", |
| 187 "//testing/gtest", | 188 "//testing/gtest", |
| 188 "//ui/gfx", | 189 "//ui/gfx", |
| 189 "//ui/ozone:platform", | 190 "//ui/ozone:platform", |
| 190 "//ui/ozone/common", | 191 "//ui/ozone/common", |
| 191 ] | 192 ] |
| 192 | 193 |
| 193 public_configs = [ ":libdrm" ] | 194 public_configs = [ ":libdrm" ] |
| 194 } | 195 } |
| OLD | NEW |