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