| 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 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'internal_ozone_platform_deps': [ | 7 'internal_ozone_platform_deps': [ |
| 8 'ozone_platform_gbm', | 8 'ozone_platform_gbm', |
| 9 ], | 9 ], |
| 10 'internal_ozone_platform_unittest_deps': [ | 10 'internal_ozone_platform_unittest_deps': [ |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 '../gfx/gfx.gyp:gfx', | 53 '../gfx/gfx.gyp:gfx', |
| 54 '../gfx/gfx.gyp:gfx_geometry', | 54 '../gfx/gfx.gyp:gfx_geometry', |
| 55 'drm_atomic', | 55 'drm_atomic', |
| 56 ], | 56 ], |
| 57 'defines': [ | 57 'defines': [ |
| 58 'OZONE_IMPLEMENTATION', | 58 'OZONE_IMPLEMENTATION', |
| 59 ], | 59 ], |
| 60 'sources': [ | 60 'sources': [ |
| 61 'client_native_pixmap_factory_gbm.cc', | 61 'client_native_pixmap_factory_gbm.cc', |
| 62 'client_native_pixmap_factory_gbm.h', | 62 'client_native_pixmap_factory_gbm.h', |
| 63 'common/client_native_pixmap_dmabuf.cc', |
| 64 'common/client_native_pixmap_dmabuf.h', |
| 63 'common/drm_util.cc', | 65 'common/drm_util.cc', |
| 64 'common/drm_util.h', | 66 'common/drm_util.h', |
| 65 'common/scoped_drm_types.cc', | 67 'common/scoped_drm_types.cc', |
| 66 'common/scoped_drm_types.h', | 68 'common/scoped_drm_types.h', |
| 67 'gpu/crtc_controller.cc', | 69 'gpu/crtc_controller.cc', |
| 68 'gpu/crtc_controller.h', | 70 'gpu/crtc_controller.h', |
| 69 'gpu/display_change_observer.h', | 71 'gpu/display_change_observer.h', |
| 70 'gpu/drm_buffer.cc', | 72 'gpu/drm_buffer.cc', |
| 71 'gpu/drm_buffer.h', | 73 'gpu/drm_buffer.h', |
| 72 'gpu/drm_console_buffer.cc', | 74 'gpu/drm_console_buffer.cc', |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 'host/drm_window_host.cc', | 146 'host/drm_window_host.cc', |
| 145 'host/drm_window_host.h', | 147 'host/drm_window_host.h', |
| 146 'host/drm_window_host_manager.cc', | 148 'host/drm_window_host_manager.cc', |
| 147 'host/drm_window_host_manager.h', | 149 'host/drm_window_host_manager.h', |
| 148 'host/gpu_thread_adapter.h', | 150 'host/gpu_thread_adapter.h', |
| 149 'host/gpu_thread_observer.h', | 151 'host/gpu_thread_observer.h', |
| 150 'ozone_platform_gbm.cc', | 152 'ozone_platform_gbm.cc', |
| 151 'ozone_platform_gbm.h', | 153 'ozone_platform_gbm.h', |
| 152 ], | 154 ], |
| 153 'conditions': [ | 155 'conditions': [ |
| 154 ['use_vgem_map==1', { | |
| 155 'dependencies': [ | |
| 156 '../ozone/ozone.gyp:vgem_map', | |
| 157 ], | |
| 158 'sources': [ | |
| 159 'common/client_native_pixmap_vgem.cc', | |
| 160 'common/client_native_pixmap_vgem.h', | |
| 161 ], | |
| 162 }], | |
| 163 ['use_drm_atomic == 1', { | 156 ['use_drm_atomic == 1', { |
| 164 'sources': [ | 157 'sources': [ |
| 165 'gpu/hardware_display_plane_atomic.cc', | 158 'gpu/hardware_display_plane_atomic.cc', |
| 166 'gpu/hardware_display_plane_atomic.h', | 159 'gpu/hardware_display_plane_atomic.h', |
| 167 'gpu/hardware_display_plane_manager_atomic.cc', | 160 'gpu/hardware_display_plane_manager_atomic.cc', |
| 168 'gpu/hardware_display_plane_manager_atomic.h', | 161 'gpu/hardware_display_plane_manager_atomic.h', |
| 169 ], | 162 ], |
| 170 }], | 163 }], |
| 171 ], | 164 ], |
| 172 }, | 165 }, |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 204 'gpu/mock_scanout_buffer.cc', | 197 'gpu/mock_scanout_buffer.cc', |
| 205 'gpu/mock_scanout_buffer.h', | 198 'gpu/mock_scanout_buffer.h', |
| 206 'gpu/mock_scanout_buffer_generator.cc', | 199 'gpu/mock_scanout_buffer_generator.cc', |
| 207 'gpu/mock_scanout_buffer_generator.h', | 200 'gpu/mock_scanout_buffer_generator.h', |
| 208 'gpu/screen_manager_unittest.cc', | 201 'gpu/screen_manager_unittest.cc', |
| 209 ], | 202 ], |
| 210 }, | 203 }, |
| 211 }, | 204 }, |
| 212 ], | 205 ], |
| 213 } | 206 } |
| OLD | NEW |