| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 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_wayland', | 8 'ozone_platform_wayland', |
| 9 ], | 9 ], |
| 10 'internal_ozone_platform_unittest_deps': [ | 10 'internal_ozone_platform_unittest_deps': [ |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 '../../third_party/wayland-protocols/wayland-protocols.gyp:xdg_shell_pro
tocol', | 30 '../../third_party/wayland-protocols/wayland-protocols.gyp:xdg_shell_pro
tocol', |
| 31 '../../third_party/wayland/wayland.gyp:wayland_client', | 31 '../../third_party/wayland/wayland.gyp:wayland_client', |
| 32 '../events/events.gyp:events', | 32 '../events/events.gyp:events', |
| 33 '../events/platform/events_platform.gyp:events_platform', | 33 '../events/platform/events_platform.gyp:events_platform', |
| 34 ], | 34 ], |
| 35 'sources': [ | 35 'sources': [ |
| 36 'client_native_pixmap_factory_wayland.cc', | 36 'client_native_pixmap_factory_wayland.cc', |
| 37 'client_native_pixmap_factory_wayland.h', | 37 'client_native_pixmap_factory_wayland.h', |
| 38 'ozone_platform_wayland.cc', | 38 'ozone_platform_wayland.cc', |
| 39 'ozone_platform_wayland.h', | 39 'ozone_platform_wayland.h', |
| 40 'wayland_display.cc', | 40 'wayland_connection.cc', |
| 41 'wayland_display.h', | 41 'wayland_connection.h', |
| 42 'wayland_object.cc', | 42 'wayland_object.cc', |
| 43 'wayland_object.h', | 43 'wayland_object.h', |
| 44 'wayland_pointer.cc', | 44 'wayland_pointer.cc', |
| 45 'wayland_pointer.h', | 45 'wayland_pointer.h', |
| 46 'wayland_surface_factory.cc', | 46 'wayland_surface_factory.cc', |
| 47 'wayland_surface_factory.h', | 47 'wayland_surface_factory.h', |
| 48 'wayland_window.cc', | 48 'wayland_window.cc', |
| 49 'wayland_window.h', | 49 'wayland_window.h', |
| 50 ], | 50 ], |
| 51 'conditions': [ | 51 'conditions': [ |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 '../gfx/gfx.gyp:gfx_test_support', | 83 '../gfx/gfx.gyp:gfx_test_support', |
| 84 ], | 84 ], |
| 85 'direct_dependent_settings': { | 85 'direct_dependent_settings': { |
| 86 'defines': [ | 86 'defines': [ |
| 87 'WL_HIDE_DEPRECATED', | 87 'WL_HIDE_DEPRECATED', |
| 88 ], | 88 ], |
| 89 'sources': [ | 89 'sources': [ |
| 90 'fake_server.cc', | 90 'fake_server.cc', |
| 91 'fake_server.h', | 91 'fake_server.h', |
| 92 'mock_platform_window_delegate.cc', | 92 'mock_platform_window_delegate.cc', |
| 93 'wayland_display_unittest.cc', | 93 'wayland_connection_unittest.cc', |
| 94 'wayland_pointer_unittest.cc', | 94 'wayland_pointer_unittest.cc', |
| 95 'wayland_surface_factory_unittest.cc', | 95 'wayland_surface_factory_unittest.cc', |
| 96 'wayland_test.cc', | 96 'wayland_test.cc', |
| 97 'wayland_test.h', | 97 'wayland_test.h', |
| 98 'wayland_window_unittest.cc', | 98 'wayland_window_unittest.cc', |
| 99 ], | 99 ], |
| 100 }, | 100 }, |
| 101 }, | 101 }, |
| 102 ], | 102 ], |
| 103 } | 103 } |
| OLD | NEW |