| 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': [ |
| 11 'ozone_platform_dri_unittests', | 11 'ozone_platform_dri_unittests', |
| 12 ], | 12 ], |
| 13 'internal_ozone_platforms': [ | 13 'internal_ozone_platforms': [ |
| 14 'dri', | 14 'dri', |
| 15 ], | 15 ], |
| 16 }, | 16 }, |
| 17 'targets': [ | 17 'targets': [ |
| 18 { | 18 { |
| 19 'target_name': 'ozone_platform_dri', | 19 'target_name': 'ozone_platform_dri', |
| 20 'type': 'static_library', | 20 'type': 'static_library', |
| 21 'dependencies': [ | 21 'dependencies': [ |
| 22 '../../base/base.gyp:base', | 22 '../../base/base.gyp:base', |
| 23 '../../build/linux/system.gyp:libdrm', | 23 '../../build/linux/system.gyp:libdrm', |
| 24 '../../skia/skia.gyp:skia', | 24 '../../skia/skia.gyp:skia', |
| 25 '../base/ui_base.gyp:ui_base', | 25 '../base/ui_base.gyp:ui_base', |
| 26 '../display/display.gyp:display_types', | 26 '../display/display.gyp:display_types', |
| 27 '../display/display.gyp:display_util', | 27 '../display/display.gyp:display_util', |
| 28 '../events/events.gyp:events', | 28 '../events/events.gyp:events', |
| 29 '../events/ozone/events_ozone.gyp:events_ozone_evdev', | 29 '../events/ozone/events_ozone.gyp:events_ozone_evdev', |
| 30 '../events/ozone/events_ozone.gyp:events_ozone_layout', |
| 30 '../gfx/gfx.gyp:gfx', | 31 '../gfx/gfx.gyp:gfx', |
| 31 '../gfx/gfx.gyp:gfx_geometry', | 32 '../gfx/gfx.gyp:gfx_geometry', |
| 32 ], | 33 ], |
| 33 'defines': [ | 34 'defines': [ |
| 34 'OZONE_IMPLEMENTATION', | 35 'OZONE_IMPLEMENTATION', |
| 35 ], | 36 ], |
| 36 'sources': [ | 37 'sources': [ |
| 37 'channel_observer.h', | 38 'channel_observer.h', |
| 38 'crtc_controller.cc', | 39 'crtc_controller.cc', |
| 39 'crtc_controller.h', | 40 'crtc_controller.h', |
| (...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 'hardware_display_controller_unittest.cc', | 117 'hardware_display_controller_unittest.cc', |
| 117 'hardware_display_plane_manager_unittest.cc', | 118 'hardware_display_plane_manager_unittest.cc', |
| 118 'screen_manager_unittest.cc', | 119 'screen_manager_unittest.cc', |
| 119 'test/mock_dri_wrapper.cc', | 120 'test/mock_dri_wrapper.cc', |
| 120 'test/mock_dri_wrapper.h', | 121 'test/mock_dri_wrapper.h', |
| 121 ], | 122 ], |
| 122 }, | 123 }, |
| 123 }, | 124 }, |
| 124 ], | 125 ], |
| 125 } | 126 } |
| OLD | NEW |