| 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 27 matching lines...) Expand all Loading... |
| 38 "dri_surface.cc", | 38 "dri_surface.cc", |
| 39 "dri_surface.h", | 39 "dri_surface.h", |
| 40 "dri_surface_factory.cc", | 40 "dri_surface_factory.cc", |
| 41 "dri_surface_factory.h", | 41 "dri_surface_factory.h", |
| 42 "dri_util.cc", | 42 "dri_util.cc", |
| 43 "dri_util.h", | 43 "dri_util.h", |
| 44 "dri_vsync_provider.cc", | 44 "dri_vsync_provider.cc", |
| 45 "dri_vsync_provider.h", | 45 "dri_vsync_provider.h", |
| 46 "dri_window.cc", | 46 "dri_window.cc", |
| 47 "dri_window.h", | 47 "dri_window.h", |
| 48 "dri_window_delegate.cc", |
| 48 "dri_window_delegate.h", | 49 "dri_window_delegate.h", |
| 49 "dri_window_delegate_impl.cc", | |
| 50 "dri_window_delegate_impl.h", | |
| 51 "dri_window_delegate_manager.cc", | 50 "dri_window_delegate_manager.cc", |
| 52 "dri_window_delegate_manager.h", | 51 "dri_window_delegate_manager.h", |
| 53 "dri_window_manager.cc", | 52 "dri_window_manager.cc", |
| 54 "dri_window_manager.h", | 53 "dri_window_manager.h", |
| 55 "drm_device.cc", | 54 "drm_device.cc", |
| 56 "drm_device.h", | 55 "drm_device.h", |
| 57 "drm_device_generator.cc", | 56 "drm_device_generator.cc", |
| 58 "drm_device_generator.h", | 57 "drm_device_generator.h", |
| 59 "drm_device_manager.cc", | 58 "drm_device_manager.cc", |
| 60 "drm_device_manager.h", | 59 "drm_device_manager.h", |
| (...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 113 "//skia", | 112 "//skia", |
| 114 "//ui/events/ozone:events_ozone_evdev", | 113 "//ui/events/ozone:events_ozone_evdev", |
| 115 "//ui/events/ozone:events_ozone_layout", | 114 "//ui/events/ozone:events_ozone_layout", |
| 116 ] | 115 ] |
| 117 } | 116 } |
| 118 | 117 |
| 119 source_set("dri_unittests") { | 118 source_set("dri_unittests") { |
| 120 testonly = true | 119 testonly = true |
| 121 sources = [ | 120 sources = [ |
| 122 "dri_surface_unittest.cc", | 121 "dri_surface_unittest.cc", |
| 123 "dri_window_delegate_impl_unittest.cc", | 122 "dri_window_delegate_unittest.cc", |
| 124 "hardware_display_controller_unittest.cc", | 123 "hardware_display_controller_unittest.cc", |
| 125 "hardware_display_plane_manager_unittest.cc", | 124 "hardware_display_plane_manager_unittest.cc", |
| 126 "screen_manager_unittest.cc", | 125 "screen_manager_unittest.cc", |
| 127 "test/mock_dri_wrapper.cc", | 126 "test/mock_dri_wrapper.cc", |
| 128 "test/mock_dri_wrapper.h", | 127 "test/mock_dri_wrapper.h", |
| 129 ] | 128 ] |
| 130 | 129 |
| 131 deps = [ | 130 deps = [ |
| 132 "//skia", | 131 "//skia", |
| 133 "//testing/gtest", | 132 "//testing/gtest", |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 "//ui/events/ozone:events_ozone_layout", | 168 "//ui/events/ozone:events_ozone_layout", |
| 170 ] | 169 ] |
| 171 | 170 |
| 172 public_configs = [ ":libgbm" ] | 171 public_configs = [ ":libgbm" ] |
| 173 | 172 |
| 174 if (use_mesa_platform_null) { | 173 if (use_mesa_platform_null) { |
| 175 defines += [ "USE_MESA_PLATFORM_NULL" ] | 174 defines += [ "USE_MESA_PLATFORM_NULL" ] |
| 176 } | 175 } |
| 177 } | 176 } |
| 178 } | 177 } |
| OLD | NEW |