| 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 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 81 | 81 |
| 82 deps = [ | 82 deps = [ |
| 83 ":dri_common", | 83 ":dri_common", |
| 84 "//base", | 84 "//base", |
| 85 "//skia", | 85 "//skia", |
| 86 "//ui/events/ozone:events_ozone_evdev", | 86 "//ui/events/ozone:events_ozone_evdev", |
| 87 ] | 87 ] |
| 88 } | 88 } |
| 89 | 89 |
| 90 source_set("dri_unittests") { | 90 source_set("dri_unittests") { |
| 91 testonly = true |
| 91 sources = [ | 92 sources = [ |
| 92 "dri_surface_factory_unittest.cc", | 93 "dri_surface_factory_unittest.cc", |
| 93 "dri_surface_unittest.cc", | 94 "dri_surface_unittest.cc", |
| 94 "hardware_display_controller_unittest.cc", | 95 "hardware_display_controller_unittest.cc", |
| 95 "screen_manager_unittest.cc", | 96 "screen_manager_unittest.cc", |
| 96 "test/mock_dri_wrapper.cc", | 97 "test/mock_dri_wrapper.cc", |
| 97 "test/mock_dri_wrapper.h", | 98 "test/mock_dri_wrapper.h", |
| 98 ] | 99 ] |
| 99 | 100 |
| 100 deps = [ | 101 deps = [ |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 "//base", | 143 "//base", |
| 143 "//skia", | 144 "//skia", |
| 144 "//ui/events/ozone:events_ozone_evdev", | 145 "//ui/events/ozone:events_ozone_evdev", |
| 145 ] | 146 ] |
| 146 | 147 |
| 147 direct_dependent_configs = [ | 148 direct_dependent_configs = [ |
| 148 ":libgbm", | 149 ":libgbm", |
| 149 ] | 150 ] |
| 150 } | 151 } |
| 151 } | 152 } |
| OLD | NEW |