OLD | NEW |
| (Empty) |
1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | |
2 # Use of this source code is governed by a BSD-style license that can be | |
3 # found in the LICENSE file. | |
4 | |
5 { | |
6 'targets': [ | |
7 { | |
8 'target_name': 'wayland', | |
9 'type': 'static_library', | |
10 'dependencies': [ | |
11 '../../base/base.gyp:base', | |
12 '../../build/linux/system.gyp:wayland', | |
13 '../ui.gyp:ui', | |
14 ], | |
15 'include_dirs': [ | |
16 '.', | |
17 '../..', | |
18 'events', | |
19 ], | |
20 'sources': [ | |
21 'wayland_buffer.cc', | |
22 'wayland_buffer.h', | |
23 'wayland_cursor.cc', | |
24 'wayland_cursor.h', | |
25 'wayland_display.cc', | |
26 'wayland_display.h', | |
27 'wayland_input_device.cc', | |
28 'wayland_input_device.h', | |
29 'wayland_message_pump.cc', | |
30 'wayland_message_pump.h', | |
31 'wayland_screen.cc', | |
32 'wayland_screen.h', | |
33 'wayland_shm_buffer.cc', | |
34 'wayland_shm_buffer.h', | |
35 'wayland_widget.h', | |
36 'wayland_window.cc', | |
37 'wayland_window.h', | |
38 ], | |
39 } | |
40 ], | |
41 } | |
OLD | NEW |