| 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_mesa_platform_null = false | 9 use_mesa_platform_null = false |
| 10 use_drm_atomic = false | 10 use_drm_atomic = false |
| (...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 ] | 110 ] |
| 111 } | 111 } |
| 112 | 112 |
| 113 deps = [ | 113 deps = [ |
| 114 "//base", | 114 "//base", |
| 115 "//skia", | 115 "//skia", |
| 116 "//mojo/application", | 116 "//mojo/application", |
| 117 "//mojo/common", | 117 "//mojo/common", |
| 118 "//mojo/converters/geometry", | 118 "//mojo/converters/geometry", |
| 119 "//mojo/converters/ozone_drm_gpu", | 119 "//mojo/converters/ozone_drm_gpu", |
| 120 "//mojo/services/ozone_drm_gpu/public/interfaces", | 120 "//mojo/services/ozone_drm_gpu/interfaces", |
| 121 "//mojo/services/ozone_drm_host/public/interfaces", | 121 "//mojo/services/ozone_drm_host/interfaces", |
| 122 "//ui/base", | 122 "//ui/base", |
| 123 "//ui/display/types", | 123 "//ui/display/types", |
| 124 "//ui/display/util", | 124 "//ui/display/util", |
| 125 "//ui/events", | 125 "//ui/events", |
| 126 "//ui/events/devices", | 126 "//ui/events/devices", |
| 127 "//ui/events/ozone:events_ozone", | 127 "//ui/events/ozone:events_ozone", |
| 128 "//ui/events/ozone:events_ozone_evdev", | 128 "//ui/events/ozone:events_ozone_evdev", |
| 129 "//ui/events/ozone:events_ozone_layout", | 129 "//ui/events/ozone:events_ozone_layout", |
| 130 "//ui/events/platform", | 130 "//ui/events/platform", |
| 131 "//ui/gfx", | 131 "//ui/gfx", |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 223 public_configs = [ | 223 public_configs = [ |
| 224 ":libgbm", | 224 ":libgbm", |
| 225 "//third_party/khronos:khronos_headers", | 225 "//third_party/khronos:khronos_headers", |
| 226 ] | 226 ] |
| 227 | 227 |
| 228 if (use_mesa_platform_null) { | 228 if (use_mesa_platform_null) { |
| 229 defines += [ "USE_MESA_PLATFORM_NULL" ] | 229 defines += [ "USE_MESA_PLATFORM_NULL" ] |
| 230 } | 230 } |
| 231 } | 231 } |
| 232 } | 232 } |
| OLD | NEW |