| 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 } | 10 } |
| (...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 76 ] | 76 ] |
| 77 | 77 |
| 78 deps = [ | 78 deps = [ |
| 79 "//base", | 79 "//base", |
| 80 "//skia", | 80 "//skia", |
| 81 "//ipc", | 81 "//ipc", |
| 82 "//ui/base", | 82 "//ui/base", |
| 83 "//ui/display/types", | 83 "//ui/display/types", |
| 84 "//ui/display/util", | 84 "//ui/display/util", |
| 85 "//ui/events", | 85 "//ui/events", |
| 86 "//ui/events/devices", |
| 86 "//ui/events/ozone:events_ozone_evdev", | 87 "//ui/events/ozone:events_ozone_evdev", |
| 87 "//ui/events/ozone:events_ozone_layout", | 88 "//ui/events/ozone:events_ozone_layout", |
| 89 "//ui/events/platform", |
| 88 "//ui/gfx", | 90 "//ui/gfx", |
| 89 "//ui/gfx/geometry", | 91 "//ui/gfx/geometry", |
| 90 ] | 92 ] |
| 91 | 93 |
| 92 public_configs = [ ":libdrm" ] | 94 public_configs = [ ":libdrm" ] |
| 93 } | 95 } |
| 94 | 96 |
| 95 if (ozone_platform_dri) { | 97 if (ozone_platform_dri) { |
| 96 source_set("dri") { | 98 source_set("dri") { |
| 97 sources = [ | 99 sources = [ |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 "//ui/events/ozone:events_ozone_layout", | 161 "//ui/events/ozone:events_ozone_layout", |
| 160 ] | 162 ] |
| 161 | 163 |
| 162 public_configs = [ ":libgbm" ] | 164 public_configs = [ ":libgbm" ] |
| 163 | 165 |
| 164 if (use_mesa_platform_null) { | 166 if (use_mesa_platform_null) { |
| 165 defines += [ "USE_MESA_PLATFORM_NULL" ] | 167 defines += [ "USE_MESA_PLATFORM_NULL" ] |
| 166 } | 168 } |
| 167 } | 169 } |
| 168 } | 170 } |
| OLD | NEW |