Chromium Code Reviews| Index: ui/wayland/wayland.gyp |
| diff --git a/ui/wayland/wayland.gyp b/ui/wayland/wayland.gyp |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..05410a6f7afaf094a3bfc28e68ab6e614a6eb879 |
| --- /dev/null |
| +++ b/ui/wayland/wayland.gyp |
| @@ -0,0 +1,42 @@ |
| +# Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| +# Use of this source code is governed by a BSD-style license that can be |
| +# found in the LICENSE file. |
| + |
| +{ |
| + 'targets': [ |
| + { |
| + 'target_name': 'wayland', |
| + 'type': 'static_library', |
| + 'dependencies': [ |
| + '../../base/base.gyp:base', |
| + '../../build/linux/system.gyp:wayland', |
| + '../ui.gyp:ui', |
| + ], |
| + 'include_dirs': [ |
| + '.', |
| + '../..', |
| + 'events', |
| + ], |
| + 'sources': [ |
| + 'events/wayland_event.h', |
| + 'wayland_buffer.cc', |
| + 'wayland_buffer.h', |
| + 'wayland_cursor.cc', |
| + 'wayland_cursor.h', |
| + 'wayland_display.cc', |
| + 'wayland_display.h', |
| + 'wayland_input_device.cc', |
| + 'wayland_input_device.h', |
| + 'wayland_screen.cc', |
| + 'wayland_screen.h', |
| + 'wayland_shm_buffer.cc', |
| + 'wayland_shm_buffer.h', |
| + 'wayland_message_pump.cc', |
|
tfarina
2011/07/26 16:14:41
this should be right after input_device.h
|
| + 'wayland_message_pump.h', |
| + 'wayland_widget.h', |
| + 'wayland_window.cc', |
| + 'wayland_window.h', |
| + ], |
| + } |
| + ], |
| +} |