| 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 pkg_config("libdrm") { | 8 pkg_config("libdrm") { |
| 9 packages = [ "libdrm" ] | 9 packages = [ "libdrm" ] |
| 10 } | 10 } |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 ] | 71 ] |
| 72 | 72 |
| 73 deps = [ | 73 deps = [ |
| 74 "//base", | 74 "//base", |
| 75 "//skia", | 75 "//skia", |
| 76 "//ipc", | 76 "//ipc", |
| 77 "//ui/base", | 77 "//ui/base", |
| 78 "//ui/display/types", | 78 "//ui/display/types", |
| 79 "//ui/events", | 79 "//ui/events", |
| 80 "//ui/events/ozone:events_ozone_evdev", | 80 "//ui/events/ozone:events_ozone_evdev", |
| 81 "//ui/events/ozone:events_ozone_layout", |
| 81 "//ui/gfx", | 82 "//ui/gfx", |
| 82 "//ui/gfx/geometry", | 83 "//ui/gfx/geometry", |
| 83 ] | 84 ] |
| 84 | 85 |
| 85 public_configs = [ ":libdrm" ] | 86 public_configs = [ ":libdrm" ] |
| 86 } | 87 } |
| 87 | 88 |
| 88 if (ozone_platform_dri) { | 89 if (ozone_platform_dri) { |
| 89 source_set("dri") { | 90 source_set("dri") { |
| 90 sources = [ | 91 sources = [ |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 deps = [ | 145 deps = [ |
| 145 ":dri_common", | 146 ":dri_common", |
| 146 "//base", | 147 "//base", |
| 147 "//skia", | 148 "//skia", |
| 148 "//ui/events/ozone:events_ozone_evdev", | 149 "//ui/events/ozone:events_ozone_evdev", |
| 149 ] | 150 ] |
| 150 | 151 |
| 151 public_configs = [ ":libgbm" ] | 152 public_configs = [ ":libgbm" ] |
| 152 } | 153 } |
| 153 } | 154 } |
| OLD | NEW |