| 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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 120 "mus_thread_proxy.h", | 120 "mus_thread_proxy.h", |
| 121 "ozone_platform_gbm.cc", | 121 "ozone_platform_gbm.cc", |
| 122 "ozone_platform_gbm.h", | 122 "ozone_platform_gbm.h", |
| 123 ] | 123 ] |
| 124 | 124 |
| 125 deps = [ | 125 deps = [ |
| 126 "//base", | 126 "//base", |
| 127 "//ipc", | 127 "//ipc", |
| 128 "//mojo/common:common_base", | 128 "//mojo/common:common_base", |
| 129 "//services/service_manager/public/cpp:sources", | 129 "//services/service_manager/public/cpp:sources", |
| 130 "//services/ui/public/interfaces:constants", |
| 130 "//skia", | 131 "//skia", |
| 131 "//third_party/minigbm", | 132 "//third_party/minigbm", |
| 132 "//ui/base", | 133 "//ui/base", |
| 133 "//ui/display", | 134 "//ui/display", |
| 134 "//ui/display/types", | 135 "//ui/display/types", |
| 135 "//ui/display/util", | 136 "//ui/display/util", |
| 136 "//ui/events", | 137 "//ui/events", |
| 137 "//ui/events/devices", | 138 "//ui/events/devices", |
| 138 "//ui/events/ozone:events_ozone", | 139 "//ui/events/ozone:events_ozone", |
| 139 "//ui/events/ozone:events_ozone_evdev", | 140 "//ui/events/ozone:events_ozone_evdev", |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 193 ":gbm", | 194 ":gbm", |
| 194 "//skia", | 195 "//skia", |
| 195 "//testing/gtest", | 196 "//testing/gtest", |
| 196 "//ui/gfx", | 197 "//ui/gfx", |
| 197 "//ui/ozone:platform", | 198 "//ui/ozone:platform", |
| 198 "//ui/ozone/common", | 199 "//ui/ozone/common", |
| 199 ] | 200 ] |
| 200 | 201 |
| 201 public_configs = [ ":libdrm" ] | 202 public_configs = [ ":libdrm" ] |
| 202 } | 203 } |
| OLD | NEW |