| 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 'conditions': [ | 51 'conditions': [ |
| 52 ['use_wayland_egl==1', { | 52 ['use_wayland_egl==1', { |
| 53 'defines': [ | 53 'defines': [ |
| 54 'USE_WAYLAND_EGL', | 54 'USE_WAYLAND_EGL', |
| 55 ], | 55 ], |
| 56 'dependencies': [ | 56 'dependencies': [ |
| 57 '../../build/linux/system.gyp:wayland-egl', | 57 '../../build/linux/system.gyp:wayland-egl', |
| 58 '../../third_party/khronos/khronos.gyp:khronos_headers', | 58 '../../third_party/khronos/khronos.gyp:khronos_headers', |
| 59 ], | 59 ], |
| 60 'sources': [ | 60 'sources': [ |
| 61 'wayland_egl_surface.cc', | 61 'gl_surface_wayland.cc', |
| 62 'wayland_egl_surface.h', | 62 'gl_surface_wayland.h', |
| 63 ], | 63 ], |
| 64 }], | 64 }], |
| 65 ], | 65 ], |
| 66 }, | 66 }, |
| 67 { | 67 { |
| 68 'target_name': 'ozone_platform_wayland_unittests', | 68 'target_name': 'ozone_platform_wayland_unittests', |
| 69 'type': 'none', | 69 'type': 'none', |
| 70 'dependencies': [ | 70 'dependencies': [ |
| 71 'ozone.gyp:ozone_platform', | 71 'ozone.gyp:ozone_platform', |
| 72 '../../skia/skia.gyp:skia', | 72 '../../skia/skia.gyp:skia', |
| (...skipping 21 matching lines...) Expand all Loading... |
| 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 |