Chromium Code Reviews| 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_drm', | 8 'ozone_platform_drm', |
| 9 ], | 9 ], |
| 10 'internal_ozone_platform_unittest_deps': [ | 10 'internal_ozone_platform_unittest_deps': [ |
| (...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 97 'host/drm_native_display_delegate.cc', | 97 'host/drm_native_display_delegate.cc', |
| 98 'host/drm_native_display_delegate.h', | 98 'host/drm_native_display_delegate.h', |
| 99 'host/drm_window_host.cc', | 99 'host/drm_window_host.cc', |
| 100 'host/drm_window_host.h', | 100 'host/drm_window_host.h', |
| 101 'host/drm_window_host_manager.cc', | 101 'host/drm_window_host_manager.cc', |
| 102 'host/drm_window_host_manager.h', | 102 'host/drm_window_host_manager.h', |
| 103 'ozone_platform_drm.cc', | 103 'ozone_platform_drm.cc', |
| 104 'ozone_platform_drm.h', | 104 'ozone_platform_drm.h', |
| 105 'scanout_buffer.h', | 105 'scanout_buffer.h', |
| 106 ], | 106 ], |
| 107 'conditions': [ | |
| 108 # This is only present in actual device builds so we use it as a flag | |
| 109 # here to filter out code that can't run on the bots. | |
| 110 ['use_evdev_gestures==1', { | |
|
dnicoara
2015/05/14 17:43:18
Lets not re-use event related defines for this kin
| |
| 111 'defines': [ | |
| 112 'IS_DEVICE_BUILD', | |
|
dnicoara
2015/05/14 17:43:18
You should also name this appropriately.
achaulk
2015/05/14 18:26:24
To what? OS_IS_REALLY_CHROMEOS?
dnicoara
2015/05/14 18:31:37
To SUPPORTS_SET_CLIENT_CAP or something similar. I
achaulk
2015/05/14 18:33:13
We're also going to need to condition the atomic a
dnicoara
2015/05/14 18:38:15
How about HAS_ATOMIC_DRM_API? Just because chromeo
| |
| 113 ], | |
| 114 }] | |
| 115 ], | |
| 107 }, | 116 }, |
| 108 { | 117 { |
| 109 'target_name': 'ozone_platform_drm_unittests', | 118 'target_name': 'ozone_platform_drm_unittests', |
| 110 'type': 'none', | 119 'type': 'none', |
| 111 'dependencies': [ | 120 'dependencies': [ |
| 112 '../../build/linux/system.gyp:libdrm', | 121 '../../build/linux/system.gyp:libdrm', |
| 113 '../../skia/skia.gyp:skia', | 122 '../../skia/skia.gyp:skia', |
| 114 '../gfx/gfx.gyp:gfx_geometry', | 123 '../gfx/gfx.gyp:gfx_geometry', |
| 115 'ozone.gyp:ozone', | 124 'ozone.gyp:ozone', |
| 116 ], | 125 ], |
| 117 'export_dependent_settings': [ | 126 'export_dependent_settings': [ |
| 118 '../../build/linux/system.gyp:libdrm', | 127 '../../build/linux/system.gyp:libdrm', |
| 119 '../../skia/skia.gyp:skia', | 128 '../../skia/skia.gyp:skia', |
| 120 '../gfx/gfx.gyp:gfx_geometry', | 129 '../gfx/gfx.gyp:gfx_geometry', |
| 121 ], | 130 ], |
| 122 'direct_dependent_settings': { | 131 'direct_dependent_settings': { |
| 123 'sources': [ | 132 'sources': [ |
| 124 'gpu/drm_surface_unittest.cc', | 133 'gpu/drm_surface_unittest.cc', |
| 125 'gpu/drm_window_unittest.cc', | 134 'gpu/drm_window_unittest.cc', |
| 126 'gpu/hardware_display_controller_unittest.cc', | 135 'gpu/hardware_display_controller_unittest.cc', |
| 127 'gpu/hardware_display_plane_manager_unittest.cc', | 136 'gpu/hardware_display_plane_manager_unittest.cc', |
| 128 'gpu/screen_manager_unittest.cc', | 137 'gpu/screen_manager_unittest.cc', |
| 129 'test/mock_drm_device.cc', | 138 'test/mock_drm_device.cc', |
| 130 'test/mock_drm_device.h', | 139 'test/mock_drm_device.h', |
| 131 ], | 140 ], |
| 132 }, | 141 }, |
| 133 }, | 142 }, |
| 134 ], | 143 ], |
| 135 } | 144 } |
| OLD | NEW |