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_dri', | 8 'ozone_platform_dri', |
9 ], | 9 ], |
10 'internal_ozone_platform_unittest_deps': [ | 10 'internal_ozone_platform_unittest_deps': [ |
(...skipping 20 matching lines...) Expand all Loading... |
31 '../gfx/gfx.gyp:gfx', | 31 '../gfx/gfx.gyp:gfx', |
32 '../gfx/gfx.gyp:gfx_geometry', | 32 '../gfx/gfx.gyp:gfx_geometry', |
33 ], | 33 ], |
34 'defines': [ | 34 'defines': [ |
35 'OZONE_IMPLEMENTATION', | 35 'OZONE_IMPLEMENTATION', |
36 ], | 36 ], |
37 'sources': [ | 37 'sources': [ |
38 'channel_observer.h', | 38 'channel_observer.h', |
39 'crtc_controller.cc', | 39 'crtc_controller.cc', |
40 'crtc_controller.h', | 40 'crtc_controller.h', |
| 41 'display_manager.cc', |
| 42 'display_manager.h', |
41 'display_mode_dri.cc', | 43 'display_mode_dri.cc', |
42 'display_mode_dri.h', | 44 'display_mode_dri.h', |
43 'display_snapshot_dri.cc', | 45 'display_snapshot_dri.cc', |
44 'display_snapshot_dri.h', | 46 'display_snapshot_dri.h', |
45 'dri_console_buffer.cc', | 47 'dri_console_buffer.cc', |
46 'dri_console_buffer.h', | 48 'dri_console_buffer.h', |
47 'dri_buffer.cc', | 49 'dri_buffer.cc', |
48 'dri_buffer.h', | 50 'dri_buffer.h', |
49 'dri_cursor.cc', | 51 'dri_cursor.cc', |
50 'dri_cursor.h', | 52 'dri_cursor.h', |
(...skipping 26 matching lines...) Expand all Loading... |
77 'native_display_delegate_dri.h', | 79 'native_display_delegate_dri.h', |
78 'overlay_plane.cc', | 80 'overlay_plane.cc', |
79 'overlay_plane.h', | 81 'overlay_plane.h', |
80 'ozone_platform_dri.cc', | 82 'ozone_platform_dri.cc', |
81 'ozone_platform_dri.h', | 83 'ozone_platform_dri.h', |
82 'scoped_drm_types.cc', | 84 'scoped_drm_types.cc', |
83 'scoped_drm_types.h', | 85 'scoped_drm_types.h', |
84 'screen_manager.cc', | 86 'screen_manager.cc', |
85 'screen_manager.h', | 87 'screen_manager.h', |
86 'scanout_buffer.h', | 88 'scanout_buffer.h', |
| 89 'touch_converter.cc', |
| 90 'touch_converter.h', |
87 'virtual_terminal_manager.cc', | 91 'virtual_terminal_manager.cc', |
88 'virtual_terminal_manager.h', | 92 'virtual_terminal_manager.h', |
89 ], | 93 ], |
90 'conditions': [ | 94 'conditions': [ |
91 ['use_drm_atomic_flip==1', { | 95 ['use_drm_atomic_flip==1', { |
92 'sources': [ | 96 'sources': [ |
93 'hardware_display_plane.cc', | 97 'hardware_display_plane.cc', |
94 'hardware_display_plane.h', | 98 'hardware_display_plane.h', |
95 'hardware_display_plane_manager.cc', | 99 'hardware_display_plane_manager.cc', |
96 'hardware_display_plane_manager.h', | 100 'hardware_display_plane_manager.h', |
(...skipping 21 matching lines...) Expand all Loading... |
118 'dri_surface_unittest.cc', | 122 'dri_surface_unittest.cc', |
119 'hardware_display_controller_unittest.cc', | 123 'hardware_display_controller_unittest.cc', |
120 'screen_manager_unittest.cc', | 124 'screen_manager_unittest.cc', |
121 'test/mock_dri_wrapper.cc', | 125 'test/mock_dri_wrapper.cc', |
122 'test/mock_dri_wrapper.h', | 126 'test/mock_dri_wrapper.h', |
123 ], | 127 ], |
124 }, | 128 }, |
125 }, | 129 }, |
126 ], | 130 ], |
127 } | 131 } |
OLD | NEW |